Use nixos-unstable nixVersions.stable as nix package

This commit is contained in:
2022-02-17 15:59:00 +00:00
parent c0414cd062
commit 21ce843a8f
4 changed files with 3 additions and 72 deletions

View File

@@ -108,7 +108,6 @@ in
# Note: If globalPkgs mode is on, then these will be overridden by the NixOS equivalents of these options
nixpkgs = {
overlays = [
(final: prev: { nix = inputs.nix.defaultPackage.${config.nixpkgs.system}; })
# TODO: Wait for https://github.com/NixOS/nixpkgs/pull/159074 to arrive to nixos-unstable
(final: prev: { remarshal = pkgs'.master.remarshal; })
];
@@ -122,7 +121,7 @@ in
home = {
packages = with pkgs; [
nix
pkgs'.unstable.nixVersions.stable
];
};
})