19 lines
392 B
Nix
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;
|
|
};
|
|
}
|