1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-10 13:13:57 +00:00
ultima/modules/home/programs/custom/mabel/default.nix

22 lines
288 B
Nix

{
x,
pkgs,
lib,
config,
...
}:
with lib;
with x;
let
cfg = config.module.programs.custom.mabel;
in
{
options = {
module.programs.custom.mabel = {
enable = mkBool;
};
};
config = mkIf cfg.enable { home.packages = [ (pkgs.callPackage ./pkg.nix { }) ]; };
}