diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 19:56:03 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:52 -0700 |
| commit | 501421d59a1ebd7f5a26489007710c401fe2cf95 (patch) | |
| tree | e16a25d4ce5b5e3dab19a96178017c316cfda102 | |
| parent | f92d20c06078e92a1bb2d79e3afb9449a7b84614 (diff) | |
migration: persist applications folder by default
| -rw-r--r-- | hosts/c-pc/home.nix | 2 | ||||
| -rw-r--r-- | snowfall/modules/home/impermanence/default.nix | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 9501c46..3ccd6df 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -15,8 +15,6 @@ allowOther = true; directories = [ - ".local/share/applications" - ".config/jellyfin" ".local/share/jellyfin" ".cache/jellyfin" diff --git a/snowfall/modules/home/impermanence/default.nix b/snowfall/modules/home/impermanence/default.nix index 613603f..081946c 100644 --- a/snowfall/modules/home/impermanence/default.nix +++ b/snowfall/modules/home/impermanence/default.nix @@ -30,6 +30,7 @@ in { allowOther = true; directories = mkIf cfg.skeleton [ + ".local/share/applications" ".local/bin" "Downloads" |