diff options
author | Alan Pearce | 2018-11-07 16:25:15 +0100 |
---|---|---|
committer | Alan Pearce | 2018-11-07 16:25:15 +0100 |
commit | ccb69f84f6123011a176a42e0e1c50ae822d3c58 (patch) | |
tree | b09faefb995112ebe9ec801d44addf5124733a6f /modules/programs | |
parent | 8003056612155a356e50829b998a0436c3d0f3a5 (diff) | |
parent | d2c76a7b484ff11dc9a19a3e1c56bd71e9fc725f (diff) | |
download | nixos-configuration-ccb69f84f6123011a176a42e0e1c50ae822d3c58.tar.lz nixos-configuration-ccb69f84f6123011a176a42e0e1c50ae822d3c58.tar.zst nixos-configuration-ccb69f84f6123011a176a42e0e1c50ae822d3c58.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'modules/programs')
-rw-r--r-- | modules/programs/dotfiles.nix | 9 | ||||
-rw-r--r-- | modules/programs/shell.nix | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/modules/programs/dotfiles.nix b/modules/programs/dotfiles.nix index 467665f..2e3f44a 100644 --- a/modules/programs/dotfiles.nix +++ b/modules/programs/dotfiles.nix @@ -1,9 +1,14 @@ { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - git stow fzf ghq - ]; + ] ++ ( + if stdenv.isDarwin + then [ + ] else [ + git + ] + ); } diff --git a/modules/programs/shell.nix b/modules/programs/shell.nix index b7bbd8f..d59f9fb 100644 --- a/modules/programs/shell.nix +++ b/modules/programs/shell.nix @@ -5,9 +5,9 @@ promptInit = ""; }; programs.bash.enableCompletion = true; + programs.vim.enable = pkgs.stdenv.isDarwin; environment.systemPackages = with pkgs; [ - vim pv fd entr @@ -23,7 +23,11 @@ zip unzip telnet - + ] ++ ( + if !stdenv.isDarwin + then [ + vim unar - ]; + ] else [ + ]); } |