base: enable rebuilding nixos-config without updating the channels used

This commit is contained in:
2024-09-01 21:45:30 +02:00
parent 161265d346
commit f7e2c74f89
2 changed files with 11 additions and 3 deletions

View File

@@ -23,8 +23,12 @@
*/
registry = {
"nixpkgs".flake = inputs.nixpkgs;
"nixpkgs-unstable".flake = inputs.nixpkgs-unstable;
"pvv-nix".flake = inputs.self;
};
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
nixPath = [
"nixpkgs=${inputs.nixpkgs}"
"unstable=${inputs.nixpkgs-unstable}"
];
};
}
}