diff options
Diffstat (limited to 'hosts/profiles.nix')
| -rw-r--r-- | hosts/profiles.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix index 614933e..13f5e44 100644 --- a/hosts/profiles.nix +++ b/hosts/profiles.nix @@ -2,11 +2,11 @@ inputs, self, }: let - inherit (inputs) getchoo home-manager nixpkgs nixpkgsUnstable nur ragenix; + inherit (inputs) getchoo home-manager nixpkgs nixpkgs-stable nur ragenix; in { personal = { system = "x86_64-linux"; - builder = nixpkgsUnstable.lib.nixosSystem; + builder = nixpkgs.lib.nixosSystem; modules = [ ragenix.nixosModules.default @@ -35,21 +35,19 @@ in { nix = { registry = { getchoo.flake = getchoo; - nixpkgs.flake = nixpkgsUnstable; + nixpkgs.flake = nixpkgs; }; settings = { trusted-substituters = [ "https://getchoo.cachix.org" "https://nix-community.cachix.org" - "https://hercules-ci.cachix.org" "https://wurzelpfropf.cachix.org" ]; trusted-public-keys = [ "getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" - "hercules-ci.cachix.org-1:ZZeDl9Va+xe9j+KqdzoBZMFJHVQ42Uu/c/1/KMC5Lw0=" "wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0=" ]; }; @@ -64,7 +62,7 @@ in { }; server = { - builder = nixpkgs.lib.nixosSystem; + builder = nixpkgs-stable.lib.nixosSystem; modules = [ ragenix.nixosModules.default @@ -80,7 +78,7 @@ in { services.promtail.enable = true; }; }; - nix.registry.nixpkgs.flake = nixpkgs; + nix.registry.nixpkgs.flake = nixpkgs-stable; } ]; |
