summary refs log tree commit diff stats
path: root/system/disks
diff options
context:
space:
mode:
Diffstat (limited to 'system/disks')
-rw-r--r--system/disks/default.nix1
-rw-r--r--system/disks/impermanence.nix26
2 files changed, 0 insertions, 27 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix
index b5e53e4..24898fe 100644
--- a/system/disks/default.nix
+++ b/system/disks/default.nix
@@ -7,7 +7,6 @@ with lib; let
   cfg = config.system.disks;
   defaultMountOptions = ["compress-force=zstd:15"];
 in {
-  imports = [ ./impermanence.nix];
 
   options.system.disks = {
     disk = mkOption {
diff --git a/system/disks/impermanence.nix b/system/disks/impermanence.nix
deleted file mode 100644
index 32ad9f7..0000000
--- a/system/disks/impermanence.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{...}: {
-  environment.persistence."/srv" = {
-    hideMounts = true;
-    directories = [
-      "/etc/nixos"
-      "/var/log"
-      "/var/lib/postgresql"
-      "/var/lib/acme"
-      {
-        directory = "/var/lib/nix-sync";
-        user = "nix-sync";
-        group = "nix-sync";
-        mode = "0700";
-      }
-      {
-        directory = "/var/lib/sshd";
-        user = "root";
-        group = "root";
-        mode = "0755";
-      }
-    ];
-    files = [
-      "/etc/machine-id"
-    ];
-  };
-}