diff options
-rw-r--r-- | modules/by-name/lf/lf/commands/default.nix | 4 | ||||
-rw-r--r-- | modules/common/default.nix | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix index 9ef52aab..f212a703 100644 --- a/modules/by-name/lf/lf/commands/default.nix +++ b/modules/by-name/lf/lf/commands/default.nix @@ -139,11 +139,11 @@ in { }; trash_clear = shell { name = "trash_clear"; - dependencies = with pkgs; [conceal fzf gawk trashy]; + dependencies = with pkgs; [conceal fzf gawk trashy gnused]; }; trash_restore = shell { name = "trash_restore"; - dependencies = with pkgs; [conceal fzf gawk trashy]; + dependencies = with pkgs; [conceal fzf gawk trashy gnused]; }; view_file = async { diff --git a/modules/common/default.nix b/modules/common/default.nix index ff948a0f..393979d1 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -82,14 +82,17 @@ config.home-manager.users.soispha.home.file); in [ - # already synchronized by the taskserver + # Already synchronized by TaskChampion sync server "~/.local/share/task" + # Already synchronized by atuin sync server + "~/.local/share/atuin" # Should not be synchronized "~/.local/share/unison" - # Is just to big to be synchronized (# TODO: Work around that <2024-08-31> ) + # These are just to big to be synchronized (# TODO: Work around that <2024-08-31> ) "~/media/music" + "~/.local/share/Steam" ] ++ homeManagerSymlinks; |