mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 11:23:52 +00:00
13 lines
267 B
Nix
13 lines
267 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.module.programs.custom.ctree;
|
|
in {
|
|
options = { module.programs.custom.ctree = { enable = mkEnableOption ""; }; };
|
|
|
|
config =
|
|
mkIf cfg.enable { home.packages = [ (pkgs.callPackage ./pkg.nix { }) ]; };
|
|
}
|
|
|