summaryrefslogtreecommitdiff
path: root/config/nix.nix
blob: 17732962ccee037d932a27ca390c80edfe9618c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{...}: {
  personal.nix = {
    enable = true;
    autoUpgrade = {
      enable = true;
      autoUpdateInputs = ["nixpkgs"];
    };
    gc.enable = true;
    flake = "git+file:///etc/nixos/";
  };
  nix.settings.max-jobs = 4;
  nixpkgs.flake = {
    setNixPath = true;
    setFlakeRegistry = true;
  };
  system.autoUpgrade.dates = "12:30";
}