This commit is contained in:
m3tam3re
2025-08-07 21:20:35 +02:00
commit 54f6c6b65b
11 changed files with 486 additions and 0 deletions

15
modules/cli/nitch.nix Normal file
View File

@ -0,0 +1,15 @@
{
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];
};
}