all repos — nixfiles @ 6e34ca8bda9cddcce1ea73f73b883a3ec8358678

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

Reformat nix files

Alan Pearce
commit

6e34ca8bda9cddcce1ea73f73b883a3ec8358678

parent

bf435de812836511a9ba580a66acf3cd235cd15c

1 file changed, 5 insertions(+), 4 deletions(-)

changed files
M system/settings/programs/shell.nixsystem/settings/programs/shell.nix
@@ -1,10 +1,11 @@
{ config, pkgs, ... }: -{ programs.zsh = { +{ + programs.zsh = { enable = true; promptInit = ""; -} // (if pkgs.stdenv.isDarwin then {} else { - enableGlobalCompInit = false; -}); + } // (if pkgs.stdenv.isDarwin then {} else { + enableGlobalCompInit = false; + }); programs.bash.enableCompletion = true; }