aboutsummaryrefslogtreecommitdiff
path: root/machines/argonath.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/argonath.nix')
-rw-r--r--machines/argonath.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/machines/argonath.nix b/machines/argonath.nix
new file mode 100644
index 0000000..b99e83f
--- /dev/null
+++ b/machines/argonath.nix
@@ -0,0 +1,25 @@
+{ ... }:
+{
+ 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
+ ../profiles/users/fcuny.nix
+ ];
+
+ networking.hostName = "argonath";
+
+ system.stateVersion = "25.05"; # Did you read the comment?
+
+ home-manager.users.fcuny = {
+ imports = [
+ ../home/profiles/minimal.nix
+ ];
+ };
+}