hokusai/nix/hm-module.nix
Konstantin Fickel 4def49350e
All checks were successful
Continuous Integration / Build Package (push) Successful in 35s
Continuous Integration / Lint, Check & Test (push) Successful in 57s
chore: rename bulkgen to hokusai
2026-02-20 17:08:12 +01:00

20 lines
319 B
Nix

self:
{
lib,
pkgs,
config,
...
}:
let
cfg = config.programs.hokusai;
in
{
options.programs.hokusai = {
enable = lib.mkEnableOption "hokusai";
package = lib.mkPackageOption self.packages.${pkgs.system} "hokusai" { };
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
};
}