2025-09-04 10:21:17 +02:00
|
|
|
{config, ...}: {
|
|
|
|
|
nix.settings = {
|
|
|
|
|
auto-optimise-store = true;
|
|
|
|
|
experimental-features = ["nix-command" "flakes"];
|
|
|
|
|
};
|
|
|
|
|
|
2025-11-05 03:53:52 +01:00
|
|
|
nix.gc = {
|
|
|
|
|
automatic = true ;
|
|
|
|
|
dates = "daily" ;
|
|
|
|
|
options = "--delete-older-than 7d" ;
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-04 10:21:17 +02:00
|
|
|
nixpkgs.config = {
|
2025-10-05 08:20:57 +02:00
|
|
|
# allowUnfree = true;
|
|
|
|
|
# allowUnsupportedSystem = true;
|
2025-09-04 10:21:17 +02:00
|
|
|
};
|
|
|
|
|
}
|