Files
nixos/modules/core/system.nix
2026-02-04 22:53:00 +01:00

33 lines
468 B
Nix

# modules/core/system.nix
# Nix settings and system configuration
{
config,
pkgs,
lib,
...
}:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [
"root"
"@wheel"
];
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "26.05";
}