From 9d22c210e37c76a2c9c46310548067b7c83343c1 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Mon, 2 Feb 2026 14:29:22 +0100 Subject: [PATCH] refactor: clean up packages --- home/hosts/packages.nix | 4 ---- home/hosts/work/default.nix | 16 +++++++++++----- 2 files changed, 11 insertions(+), 9 deletions(-) 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; + }; }