From 892de67a9f64d0b0cdb023d830a019d8feec0a57 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Wed, 19 Nov 2025 21:02:52 +0100 Subject: Nix fmt --- home-modules/apps/zsh.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'home-modules/apps/zsh.nix') diff --git a/home-modules/apps/zsh.nix b/home-modules/apps/zsh.nix index b979a83..9a7c84d 100644 --- a/home-modules/apps/zsh.nix +++ b/home-modules/apps/zsh.nix @@ -1,4 +1,10 @@ -{config ,pkgs, lib, ...}: { +{ + config, + pkgs, + lib, + ... +}: +{ options.homeapps.zsh = { enable = lib.mkEnableOption "Enable ZSH shell"; }; @@ -6,10 +12,10 @@ config = lib.mkIf config.homeapps.zsh.enable { programs.zsh = { - enable = true; + enable = true; enableCompletion = true; oh-my-zsh = { - enable = true; + enable = true; theme = "clean"; }; plugins = [ @@ -24,6 +30,6 @@ }; } ]; - }; + }; }; } -- cgit v1.3.1