diff options
author | Alan Pearce | 2019-10-08 19:37:00 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-08 19:45:27 +0200 |
commit | 1627a49a51202c8c060144925ef9d8db570fcf93 (patch) | |
tree | be597e11b4e868622930d71e52ecec918a0b8162 /system | |
parent | 8dc03df48032ced8f753aff93b9619d506ffa184 (diff) | |
download | nixfiles-1627a49a51202c8c060144925ef9d8db570fcf93.tar.lz nixfiles-1627a49a51202c8c060144925ef9d8db570fcf93.tar.zst nixfiles-1627a49a51202c8c060144925ef9d8db570fcf93.zip |
Don't try to install vim on darwin
Diffstat (limited to 'system')
-rw-r--r-- | system/modules/programs/shell.nix | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/system/modules/programs/shell.nix b/system/modules/programs/shell.nix index 68fbfcc5..a8d4f56f 100644 --- a/system/modules/programs/shell.nix +++ b/system/modules/programs/shell.nix @@ -5,7 +5,4 @@ promptInit = ""; }; programs.bash.enableCompletion = true; - programs.vim = pkgs.lib.attrsets.optionalAttrs pkgs.stdenv.isDarwin { - enable = true; - }; } |