summaryrefslogtreecommitdiff
path: root/modules/nixos/personal/nix.nix
blob: 1b49e13c0b45b0f8269162b61e3b2ca5a50f6022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{ config, lib, pkgs, ... }:

let cfg = config.personal.nix;
in {
  options.personal.nix = {
    enable = lib.mkEnableOption "nix configuration";
    autoUpgrade = lib.mkEnableOption "automatic system and nixpkgs upgrade";
    flake = lib.mkOption {
      type = with lib.types; nullOr str;
      default = null;
    };
    gc.enable = lib.mkEnableOption "garbage collection";
  };

  config = lib.mkIf cfg.enable {
    nixpkgs.config = { allowUnfree = true; };
    nix = {
      settings = {
        auto-optimise-store = true;
        experimental-features = [ "nix-command" "flakes" ];
      };
      gc = lib.mkIf cfg.gc.enable {
        automatic = true;
        dates = "daily";
        options = "--delete-old";
      };
    };
    system.autoUpgrade = lib.mkIf cfg.autoUpgrade {
      enable = true;
      flake = cfg.flake;
      flags = if (cfg.flake == null) then
        [ "--upgrade-all" ]
      else
        [ "--commit-lock-file" ] ++ pkgs.personal.lib.updateInputFlag "nixpkgs";
    };
    systemd.services = {
      nix-gc.after =
        lib.optional (cfg.autoUpgrade && cfg.gc.enable) "nixos-upgrade.service";
      nix-gc-remove-dead-roots = {
        enable = cfg.gc.enable;
        description = "Remove dead symlinks in /nix/var/nix/gcroots";
        serviceConfig.Type = "oneshot";
        script = "find /nix/var/nix/gcroots -xtype l -delete";
        before = lib.mkIf config.nix.gc.automatic [ "nix-gc.service" ];
        wantedBy = lib.mkIf config.nix.gc.automatic [ "nix-gc.service" ];
      };
      nixos-upgrade = {
        wants = lib.optional config.networking.networkmanager.enable
          "NetworkManager-wait-online.service";
      };
    };
    programs.git =
      lib.mkIf (cfg.flake != null && lib.hasPrefix "git+file" cfg.flake) {
        enable = true;
        config.user = {
          name = "Root user of ${config.networking.hostName}";
          email = "root@${config.networking.hostName}";
        };
      };
  };
}