mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-10 14:13:53 +00:00
13 lines
266 B
Nix
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 { }) ]; };
|
|
}
|
|
|