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


                        
                                






                                       

                                      





                                                            
                                          
                                                   




                                  
{ adminUser, ... }:
{
  imports = [
    ../profiles/acme.nix
    ../profiles/core-metrics.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} = {
    home.homeDirectory = "/home/${adminUser.name}";
    imports = [
      ../home/profiles/minimal.nix
    ];
  };
}