blob: 4b72ca923f13966b94d8bc0209b703d585723fba (
plain) (
tree)
|
|
{ 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
];
};
};
}
|