nix/system/Nix.nix

18 lines
391 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
nixpkgs.config.allowUnfree = true;
2024-12-02 01:29:11 +03:00
nixpkgs.config.permittedInsecurePackages = [
"dotnet-runtime-6.0.36" # HACK: I hate Nix for this.
"dotnet-sdk-wrapped-6.0.428"
];
2024-11-04 04:37:29 +03:00
nix.settings = {
auto-optimise-store = true;
keep-derivations = true;
keep-outputs = true;
min-free = 1 * 1000 * 1000 * 1000;
experimental-features = [
"flakes"
"nix-command "
];
};
}