Files
nix-fleet/modules/platform/nixsettings.nix

21 lines
415 B
Nix

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