15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.mods.common;
|
|
in
|
|
{
|
|
config = mkIf cfg.zsh {
|
|
programs.zsh.enable = true;
|
|
environment.pathsToLink = [ "/share/zsh" ];
|
|
};
|
|
}
|