sneeuwvlok/modules/nixos/shells/zsh.nix
Chris Kruining a03240d99d
more work
2025-07-28 14:34:40 +02:00

14 lines
260 B
Nix

{ inputs, config, lib, pkgs, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.shell.zsh;
in
{
options.${namespace}.shell.zsh = {
enable = mkEnableOption "enable zsh shell";
};
config = mkIf cfg.enable {
};
}