aboutsummaryrefslogblamecommitdiff
path: root/machines/argonath.nix
blob: 0c141dcfc52e9ed670dab681a2487991e6d90bd8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                   


                        
                                







                                       

                                      





                                                            
                                          




                                  
{ adminUser, ... }:
{
  imports = [
    ../profiles/acme.nix
    ../profiles/core-metrics.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/home-manager.nix
    ../profiles/users/admin-user.nix
  ];

  networking.hostName = "argonath";

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

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