summaryrefslogtreecommitdiff
path: root/config/nix.nix
blob: 5c9278fab176b2287d4aadc4e28e96334bdbb6e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:

{
  personal.nix = {
    enable = true;
    autoUpgrade = true;
    gc.enable = true;
    flake = "git+file:///etc/nixos/";
  };
  nix.settings.max-jobs = lib.mkDefault 1;
  system.autoUpgrade.flags = [ "--update-input" "personal-webpage/data" ];
}