Initial commit
This commit is contained in:
19
home-manager-modules/zsh.nix
Normal file
19
home-manager-modules/zsh.nix
Normal 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"
|
||||
# ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user