about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-16 15:43:26 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:57 +0200
commite41d21c72464f3d84c21ed7b0128bed806d63a65 (patch)
tree610b829257dfc2b3a19b1630504a23423454a756
parentFeat(direnv): Use direnv (diff)
downloadnixos-config-e41d21c72464f3d84c21ed7b0128bed806d63a65.tar.gz
nixos-config-e41d21c72464f3d84c21ed7b0128bed806d63a65.zip
Fix(hm/impermanence): Only save some of .local not all
Diffstat (limited to '')
-rw-r--r--home-manager/impermanence/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/home-manager/impermanence/default.nix b/home-manager/impermanence/default.nix
index b0a837a6..94c85723 100644
--- a/home-manager/impermanence/default.nix
+++ b/home-manager/impermanence/default.nix
@@ -7,7 +7,11 @@
   home.persistence."/srv/home/soispha" = {
     allowOther = true;
     directories = [
-      ".local"
+      ".local/share"
+
+      ".local/state/nvim"
+      ".local/state/wireplumber"
+
       ".cache"
       ".mozilla"
 
@@ -16,6 +20,7 @@
       "school"
     ];
     files = [
+      ".local/state/lesshst"
     ];
   };
 }