aboutsummaryrefslogtreecommitdiff
path: root/machines/argonath.nix
blob: b99e83fc8f08b09318090e4a64fffb89fd8157dc (plain) (blame)
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
{ ... }:
{
  imports = [
    ../profiles/acme.nix
    ../profiles/cgroups.nix
    ../profiles/defaults.nix
    ../profiles/disk/basic-vm.nix
    ../profiles/hardware/do-droplet.nix
    ../profiles/home-manager.nix
    ../profiles/reverse-proxy.nix
    ../profiles/server.nix
    ../profiles/wireguard.nix
    ../profiles/users/fcuny.nix
  ];

  networking.hostName = "argonath";

  system.stateVersion = "25.05"; # Did you read the comment?

  home-manager.users.fcuny = {
    imports = [
      ../home/profiles/minimal.nix
    ];
  };
}