Remove import of unstable Nix packages

Removed the import of unstable Nix packages from nixsettings.nix.
This commit is contained in:
Mo
2026-03-12 09:34:59 +01:00
committed by GitHub
parent 6f4c961a7d
commit 9b89295716

View File

@@ -2,16 +2,10 @@
systems = [ systems = [
"x86_64-linux" "x86_64-linux"
]; ];
perSystem = { system, ... }: { perSystem = { system, ... }: {
_module.args.pkgs = import inputs.nixpkgs { _module.args.pkgs = import inputs.nixpkgs {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
_module.args.pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
}; };
} }