diff options
Diffstat (limited to 'machines/nixos')
| -rw-r--r-- | machines/nixos/x86_64-linux/argonath.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/machines/nixos/x86_64-linux/argonath.nix b/machines/nixos/x86_64-linux/argonath.nix new file mode 100644 index 0000000..eb08896 --- /dev/null +++ b/machines/nixos/x86_64-linux/argonath.nix @@ -0,0 +1,26 @@ +{ lib, adminUser, ... }: +{ + imports = [ + ../../../profiles/cgroups.nix + ../../../profiles/defaults.nix + ../../../profiles/hardware/do-droplet.nix + ../../../profiles/disk/basic-vm.nix + ../../../profiles/home-manager.nix + ../../../profiles/server.nix + ]; + + # fixes duplicated devices in mirroredBoots + boot.loader.grub.devices = lib.mkForce [ "/dev/vda" ]; + + disko.devices.disk.disk1.device = "/dev/vda"; + + system.stateVersion = "25.05"; # Did you read the comment? + + home-manager = { + users.${adminUser.name} = { + imports = [ + ../../../home/profiles/minimal.nix + ]; + }; + }; +} |
