From 05dd85210e465caa44ef7254f2781b2d12ba2882 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 16 Oct 2022 23:49:18 +0200 Subject: Reformat files with alejandra --- system/settings/programs/shell.nix | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) (limited to 'system/settings/programs/shell.nix') diff --git a/system/settings/programs/shell.nix b/system/settings/programs/shell.nix index bf8fc3aa..6f4b793a 100644 --- a/system/settings/programs/shell.nix +++ b/system/settings/programs/shell.nix @@ -1,11 +1,19 @@ -{ config, pkgs, ... }: - { - programs.zsh = { - enable = true; - promptInit = ""; - } // (if pkgs.stdenv.isDarwin then {} else { - enableGlobalCompInit = false; - }); + config, + pkgs, + ... +}: { + programs.zsh = + { + enable = true; + promptInit = ""; + } + // ( + if pkgs.stdenv.isDarwin + then {} + else { + enableGlobalCompInit = false; + } + ); programs.bash.enableCompletion = true; } -- cgit 1.4.1