mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
22 lines
340 B
Nix
22 lines
340 B
Nix
{...}: {
|
|
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";
|
|
};
|
|
};
|
|
}
|