1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 21:03:53 +00:00
ultima/modules/home/programs/custom/ctree/default.nix

13 lines
267 B
Nix
Raw Normal View History

2024-12-03 14:20:37 +00:00
{ 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 { }) ]; };
}