diff --git a/home/hosts/packages.nix b/home/hosts/packages.nix index 24947ea..1360adc 100644 --- a/home/hosts/packages.nix +++ b/home/hosts/packages.nix @@ -2,13 +2,10 @@ with pkgs; [ - bash-completion bat entr feh fzf - gh - git haskellPackages.pandoc-crossref htop jq @@ -20,7 +17,6 @@ with pkgs; parallel pass pnpm - python3 ripgrep silver-searcher sops diff --git a/home/hosts/work/default.nix b/home/hosts/work/default.nix index f7abe3c..50111f6 100644 --- a/home/hosts/work/default.nix +++ b/home/hosts/work/default.nix @@ -75,9 +75,15 @@ in kubecolor.enable = true; }; - home.packages = import ./packages.nix { - inherit inputs; - inherit config; - inherit pkgs; - }; + home.packages = + import ./packages.nix { + inherit inputs; + inherit config; + inherit pkgs; + } + ++ import ../packages.nix { + inherit inputs; + inherit config; + inherit pkgs; + }; }