diff options
| -rwxr-xr-x | flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -13,7 +13,24 @@ nixosConfigurations = { kronos = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ + # Use Lix instead of Nix for package manager (Fascists ruined it :pensieve:) + { + nixpkgs.overlays = [ + (final: prev: { + inherit (prev.lixPackageSets.stable) + nixpkgs-review + nix-eval-jobs + nix-fast-build + colmena; + }) + ]; + + nix.package = pkgs.lixPackageSets.stable.lix; + } + + ./configuration.nix home-manager.nixosModules.home-manager { |
