summary refs log tree commit diff stats
path: root/system/impermanence/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/impermanence/default.nix')
-rw-r--r--system/impermanence/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix
deleted file mode 100644
index b2f0778..0000000
--- a/system/impermanence/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{...}: {
-  # TODO: Only activate them if their module is also active
-  imports = [
-    ./mods/acme.nix
-    ./mods/mail.nix
-    ./mods/mastodon.nix
-    ./mods/matrix.nix
-    ./mods/minecraft.nix
-    ./mods/murmur.nix
-    ./mods/nix-sync.nix
-    ./mods/openssh.nix
-    ./mods/postgresql.nix
-    ./mods/taskserver.nix
-    ./mods/users.nix
-  ];
-
-  environment.persistence."/srv" = {
-    hideMounts = true;
-    directories = [
-      "/etc/nixos"
-      "/var/log"
-      "/var/lib/nixos"
-    ];
-    files = [
-      "/etc/machine-id"
-    ];
-  };
-}