summaryrefslogtreecommitdiff
path: root/hosts/profiles.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-22 02:35:15 -0400
committerseth <[email protected]>2023-05-23 11:05:28 -0400
commit630934a2631d9429b4e46c1b6ec0f6640f332384 (patch)
treed8bd14cafb0ac382625bc5dca79b84d497e9bab7 /hosts/profiles.nix
parent2cb6cfab9553184c1e6a10303cb832fe96080d00 (diff)
!hercules-ci -> hydra
Diffstat (limited to 'hosts/profiles.nix')
-rw-r--r--hosts/profiles.nix12
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;
}
];