all repos — nixfiles @ ccb69f84f6123011a176a42e0e1c50ae822d3c58

System and user configuration, managed by nix and home-manager

Merge remote-tracking branch 'origin/master'

Alan Pearce
commit

ccb69f84f6123011a176a42e0e1c50ae822d3c58

parent

8003056612155a356e50829b998a0436c3d0f3a5

1 file changed, 7 insertions(+), 3 deletions(-)

changed files
M modules/programs/shell.nixmodules/programs/shell.nix
@@ -5,9 +5,9 @@ enable = true;
promptInit = ""; }; programs.bash.enableCompletion = true; + programs.vim.enable = pkgs.stdenv.isDarwin; environment.systemPackages = with pkgs; [ - vim pv fd entr
@@ -23,7 +23,11 @@ tree
zip unzip telnet - + ] ++ ( + if !stdenv.isDarwin + then [ + vim unar - ]; + ] else [ + ]); }