Initial commit

This commit is contained in:
2024-07-25 16:56:48 -04:00
commit b94111bc5a
12 changed files with 546 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ config, lib, ... }:
let
cfg = config.zsh;
in
{
options = {
zsh.enable = lib.mkEnableOption "enable zsh module";
};
config.programs.zsh = lib.mkIf cfg.enable {
enable = true;
# ohMyZsh.enable = true;
# ohMyZsh.theme = "robbyrussell";
# ohMyZsh.plugins = [
# "git"
# ];
};
}