nixos-config/config/nix.nix

32 lines
675 B
Nix
Raw Normal View History

2022-01-14 13:04:11 +00:00
{ pkgs, ... }: {
2022-01-14 13:03:14 +00:00
nixpkgs.config.allowUnfree = true;
nix = {
package = pkgs.nixUnstable;
useSandbox = true;
autoOptimiseStore = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
trustedUsers = [ "@wheel" ];
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
optimise = {
automatic = true;
dates = [ "weekly" ];
};
};
2022-01-14 13:07:01 +00:00
system.autoUpgrade = {
enable = true;
flake = "github:DarkKirb/nixos-config";
flags = [
"--recreate-lock-file"
"--no-write-lock-file"
"-L" # print build logs
];
dates = "daily";
};
2022-01-14 13:03:14 +00:00
}