universe/hosts/common/system/nixpkgs.nix
2025-03-03 00:00:20 +05:00

14 lines
265 B
Nix

{system, ...}: {
system.stateVersion = "24.11";
nixpkgs = {
config = {
allowUnfree = true;
allowBroken = true;
allowAliases = true;
allowInsecure = true;
allowUnfreePredicate = _: true;
};
hostPlatform = system;
};
}