fix(dregil): Remove nixpkgs-unstable references

This commit is contained in:
Alexander Kobjolke 2024-03-25 00:13:08 +01:00
parent 749dbb765d
commit a1961bc685
2 changed files with 3 additions and 8 deletions

View file

@ -81,8 +81,8 @@ in {
];
# adjust channels to nixpkgs used on this system via this flake
environment.etc."nix/inputs/nixpkgs".source = inputs.nixpkgs-unstable.outPath;
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs-unstable}" ];
environment.etc."nix/inputs/nixpkgs".source = inputs.nixpkgs.outPath;
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
nix.settings.max-jobs = 3;
nix.settings.cores = 4;

View file

@ -21,10 +21,5 @@
networking.firewall.enable = true;
nix = {
registry = {
nixpkgs.flake = inputs.nixpkgs;
nixpkgs-unstable.flake = inputs.nixpkgs-unstable;
};
};
nix = { registry = { nixpkgs.flake = inputs.nixpkgs; }; };
}