Fix hr script

This commit is contained in:
Sage 2026-01-20 14:59:04 +00:00
parent 4e694a33ce
commit da692f477c
4 changed files with 117 additions and 135 deletions

View file

@ -0,0 +1,16 @@
{
pkgs,
lib,
config,
...
}: let
cfg = config.mods.terminal;
hr = pkgs.writeShellScriptBin "hr" (builtins.readFile ./hr.sh);
in {
options.mods.terminal.hr.enable = lib.mkEnableOption "Hefring (Work Tooling)";
config = lib.mkIf cfg.hr.enable {
home.packages = [hr];
};
}