nixos-configuration/modules/_common/nixpkgs.nix
Vinzenz Schroeter ec2166ec2d fix vpn1 config
2023-09-11 21:00:02 +02:00

17 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";
};
};
}