From b8e03ddcdbcc3faca051b558d06dbd425dee9341 Mon Sep 17 00:00:00 2001 From: Culis Gaspard Date: Mon, 23 Sep 2024 14:43:54 +0200 Subject: [PATCH] feat(shell -> bash): Added `zoxide` nix package dependency --- shell/bash/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/shell/bash/default.nix b/shell/bash/default.nix index 07cb835..f0a4bc9 100644 --- a/shell/bash/default.nix +++ b/shell/bash/default.nix @@ -1,19 +1,16 @@ -{ - pkgs, - ... -} : { +{pkgs, ...}: { programs.bash = { enable = true; bashrcExtra = ". ${./.bashrc}"; }; - + home.file = { ".bash_aliases".source = ./.bash_aliases; ".bash_exec".source = ./.bash_exec; }; - + home.packages = [ pkgs.starship + pkgs.zoxide ]; } -