aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/impermanence
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/impermanence')
-rw-r--r--modules/home/impermanence/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/home/impermanence/default.nix b/modules/home/impermanence/default.nix
new file mode 100644
index 00000000..dcb60f3b
--- /dev/null
+++ b/modules/home/impermanence/default.nix
@@ -0,0 +1,29 @@
+{
+ lib,
+ nixosConfig,
+ ...
+}: {
+ config = lib.mkIf nixosConfig.soispha.impermanence.enable {
+ home.persistence."/srv/home/soispha" = {
+ allowOther = true;
+ directories = [
+ ".local/share"
+
+ ".local/state/nvim"
+ ".local/state/mpv"
+ ".local/state/wireplumber"
+
+ ".config/Signal"
+ ".config/Element"
+ ".config/iamb/profiles"
+
+ ".cache"
+ ".mozilla"
+
+ "media"
+ "repos"
+ "school"
+ ];
+ };
+ };
+}