diff --git a/modules/cli/default.nix b/modules/cli/default.nix index e323f9f..3b5ac75 100644 --- a/modules/cli/default.nix +++ b/modules/cli/default.nix @@ -2,5 +2,11 @@ { imports = [ ./adb.nix ./direnv.nix ./git.nix ./nix.nix ./zsh.nix ]; - home-manager.users.moritz.home.packages = with pkgs; [ p7zip ]; + home-manager.users.moritz = { + home.packages = with pkgs; [ p7zip ]; + programs = { + exa.enable = true; + bat.enable = true; + }; + }; } diff --git a/modules/cli/zsh.nix b/modules/cli/zsh.nix index a77ba19..6a73bee 100644 --- a/modules/cli/zsh.nix +++ b/modules/cli/zsh.nix @@ -32,13 +32,10 @@ src = inputs.forgit-git; }]; }; - exa.enable = true; - bat.enable = true; fzf = { enable = true; enableZshIntegration = true; }; - starship = { enable = true; enableZshIntegration = true;