summaryrefslogtreecommitdiff
path: root/hosts/profiles.nix
blob: f0903e5802abcc934ff9fd7640dbc6fdf3cdb2af (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
  inputs,
  self,
}: let
  inherit (inputs) getchoo home-manager nil nixpkgs nixpkgsUnstable nur ragenix;
in {
  personal = {
    system = "x86_64-linux";
    builder = nixpkgsUnstable.lib.nixosSystem;

    modules = [
      ragenix.nixosModules.default
      home-manager.nixosModules.home-manager
      nur.nixosModules.nur

      self.nixosModules.getchoo
      ../users/seth

      {
        age = {
          identityPaths = ["/etc/age/key"];
          secrets = let
            baseDir = "${self}/secrets/shared";
          in {
            rootPassword.file = "${baseDir}/rootPassword.age";
            sethPassword.file = "${baseDir}/sethPassword.age";
          };
        };

        nixpkgs = {
          overlays = [nil.overlays.nil nur.overlay getchoo.overlays.default];
          config.allowUnfree = true;
        };

        nix = {
          registry = {
            getchoo.flake = getchoo;
            nixpkgs.flake = nixpkgsUnstable;
          };

          settings = {
            trusted-substituters = [
              "https://getchoo.cachix.org"
              "https://nix-community.cachix.org"
              "https://hercules-ci.cachix.org"
              "https://wurzelpfropf.cachix.org"
            ];

            trusted-public-keys = [
              "getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="
              "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
              "hercules-ci.cachix.org-1:ZZeDl9Va+xe9j+KqdzoBZMFJHVQ42Uu/c/1/KMC5Lw0="
              "wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0="
            ];
          };
        };

        getchoo.base.enable = true;
        system.stateVersion = "23.05";
      }
    ];

    specialArgs = inputs;
  };

  server = {
    builder = nixpkgs.lib.nixosSystem;

    modules = [
      ragenix.nixosModules.default
      ../modules/nixos/base
      ../modules/nixos/server
      ../modules/nixos/features/tailscale.nix

      {
        getchoo.features.tailscale.enable = true;
        getchoo.server.enable = true;
        nix.registry.nixpkgs.flake = nixpkgs;
      }
    ];

    specialArgs = inputs;
  };
}