aboutsummaryrefslogtreecommitdiff
path: root/machines/nixos/x86_64-linux/argonath.nix
blob: 3dda7728094622a9d4fee6c0ba48f5e0fd4aad99 (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
    ];
  };
}