KV5YTWSVW4KYJIJG7RW5EVBVO3MSFLGL75AXTWJ5OHKQ4G4MKTSQC
programs.zsh.sessionVariables.EDITOR = cfg.env.editor;
programs.zsh.sessionVariables.GIT_EDITOR = cfg.env.editor;
# programs.zsh.sessionVariables.GPG_TTY = mkIf cfg.gpg.enable "$(tty)";
home.sessionVariables = mkMerge [
{
EDITOR = cfg.env.editor;
GIT_EDITOR = cfg.env.editor;
}
(mkIf cfg.gpg.enable {
GPG_TTY = "$(tty)";
})
];
home.packages = with pkgs; [
curl
direnv
fd
htop
jq
pre-commit
procs
ripgrep
];
# ] ++ mkIf cfg.shell_scripts.enable extra_shell_scripts;
home.packages = with pkgs;
[
curl
direnv
fd
htop
jq
pre-commit
procs
ripgrep
]
++ (
if cfg.shell_scripts.enable
then extra_shell_scripts
else []
);