about summary refs log tree commit diff stats
path: root/sys/impermanence
diff options
context:
space:
mode:
Diffstat (limited to 'sys/impermanence')
-rw-r--r--sys/impermanence/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/sys/impermanence/default.nix b/sys/impermanence/default.nix
deleted file mode 100644
index d116f45f..00000000
--- a/sys/impermanence/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{
-  config,
-  lib,
-  ...
-}: let
-  cfg = config.soispha.impermanence;
-  directories =
-    [
-      "/etc/nixos"
-      "/var/log"
-      "/var/lib/systemd"
-    ]
-    ++ lib.optional config.networking.networkmanager.enable "/etc/NetworkManager"
-    ++ lib.optional config.boot.lanzaboote.enable "/etc/secureboot"
-    ++ lib.optional config.hardware.bluetooth.enable "/var/lib/bluetooth"
-    ++ lib.optional config.virtualisation.waydroid.enable "/var/lib/waydroid"
-    ++ lib.optional config.services.postgresql.enable "/var/lib/postgresql";
-in {
-  options.soispha.impermanence = {
-    enable = lib.mkOption {
-      type = lib.types.bool;
-      default = true;
-      description = lib.mdDoc "Disk setup with disko";
-    };
-  };
-
-  config = lib.mkIf cfg.enable {
-    # needed for the hm impermanence config
-    programs.fuse.userAllowOther = true;
-
-    environment.persistence = {
-      "/srv" = {
-        hideMounts = true;
-        inherit directories;
-        files = [
-          "/etc/machine-id"
-        ];
-      };
-    };
-  };
-}