1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-10 14:13:53 +00:00
ultima/modules/home/programs/custom/mabel/default.nix
2024-12-09 10:15:55 +09:00

13 lines
266 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 { }) ]; };
}