nixos-configuration/modules/desktop/nixpkgs.nix

22 lines
340 B
Nix
Raw Normal View History

2023-09-09 15:44:15 +02:00
{...}: {
config = {
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-12.2.3"
];
};
system = {
stateVersion = "22.11";
# enable auto updates
autoUpgrade.enable = true;
};
nix.gc = {
automatic = true;
dates = "00:30";
};
};
}