aboutsummaryrefslogblamecommitdiff
path: root/machines/nixos/x86_64-linux/argonath.nix
blob: 4b72ca923f13966b94d8bc0209b703d585723fba (plain) (tree)
1
2
3
4
5
6
7
8
9
                   

             
                              

                                  
                                       
                                             
                                      
                                       
                                
                                   

    
                                   
 









                                                            
{ adminUser, ... }:
{
  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
  ];

  networking.hostName = "argonath";

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

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