14 lines
265 B
Nix
14 lines
265 B
Nix
{system, ...}: {
|
|
system.stateVersion = "24.11";
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
allowBroken = true;
|
|
allowAliases = true;
|
|
allowInsecure = true;
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
hostPlatform = system;
|
|
};
|
|
}
|