universe/hosts/common/system/nixpkgs.nix

14 lines
265 B
Nix
Raw Normal View History

2025-03-02 19:00:20 +00:00
{system, ...}: {
system.stateVersion = "24.11";
nixpkgs = {
config = {
allowUnfree = true;
allowBroken = true;
allowAliases = true;
allowInsecure = true;
allowUnfreePredicate = _: true;
};
hostPlatform = system;
};
}