all repos — archive/nixos-configuration @ 086e0f60c01730cacd716f14115bef99774f6957

Superseded by nixfiles

Setup trillian (MacBook)

Alan Pearce
commit

086e0f60c01730cacd716f14115bef99774f6957

parent

e30c6624e41d8b8b55085897a57f9c9c0c6c3edf

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 [ + ]); }