Files
nixos/modules/environments/zsh/default.nix
T
2023-09-11 14:55:46 +00:00

20 lines
361 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.zsh;
in {
options.my.profiles.zsh = with lib; {
enable = mkEnableOption "zsh env";
};
config = lib.mkIf cfg.enable {
programs.zsh.enable = true;
programs.zsh.ohMyZsh.enable = true;
programs.zsh.ohMyZsh.theme = "Heapbytes";
users.defaultUserShell = pkgs.zsh;
} ;
}