Files
home-config/modules/cli/nitch.nix
m3tam3re 54f6c6b65b first
2025-08-07 21:20:35 +02:00

16 lines
248 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.cli.shell.nitch;
in {
options.features.cli.shell.nitch.enable = mkEnableOption "enable nitch";
config = mkIf cfg.enable {
home.packages = with pkgs; [nitch];
};
}