16 lines
252 B
Nix
16 lines
252 B
Nix
{...}: {
|
|
config = {
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
system = {
|
|
stateVersion = "22.11";
|
|
# enable auto updates
|
|
autoUpgrade.enable = true;
|
|
};
|
|
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "00:30";
|
|
};
|
|
};
|
|
}
|