universe/host/system/nixpkgs.nix
2025-03-14 16:40:36 +00:00

19 lines
392 B
Nix

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