Files
nix-fleet/modules/platform/nixsettings.nix
Mo 9b89295716 Remove import of unstable Nix packages
Removed the import of unstable Nix packages from nixsettings.nix.
2026-03-12 09:34:59 +01:00

12 lines
207 B
Nix

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