diff options
| -rw-r--r-- | hosts/c-pc/home.nix | 5 | ||||
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 3 | ||||
| -rw-r--r-- | snowfall/modules/home/impermanence/default.nix | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 20ba9bc..0ccf99e 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -15,14 +15,11 @@ allowOther = true; directories = [ - ".local/bin" ".local/share/applications" ".mozilla" ".wine" - ".irssi" - ".config/jellyfin" ".local/share/jellyfin" ".cache/jellyfin" @@ -32,8 +29,6 @@ home.packages = with pkgs; [ pfetch - irssi - mkvtoolnix ]; diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix index c780f3e..57b184f 100644 --- a/snowfall/modules/home/apps/default.nix +++ b/snowfall/modules/home/apps/default.nix @@ -35,5 +35,8 @@ with lib; with lib.${namespace}; { ".cache/JetBrains" ]; }) + (mkSimpleApp "irssi" { + persist = [ ".irssi" ]; + }) ]; } diff --git a/snowfall/modules/home/impermanence/default.nix b/snowfall/modules/home/impermanence/default.nix index 7ddeb18..613603f 100644 --- a/snowfall/modules/home/impermanence/default.nix +++ b/snowfall/modules/home/impermanence/default.nix @@ -30,6 +30,8 @@ in { allowOther = true; directories = mkIf cfg.skeleton [ + ".local/bin" + "Downloads" "Documents" "Pictures" |