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

16 lines
283 B
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ pkgs, lib, config, ... }:
with lib;
2024-12-03 14:20:37 +00:00
let cfg = config.module.programs.custom.anicli;
2024-11-21 09:24:15 +00:00
in {
2024-12-03 14:20:37 +00:00
options = {
module.programs.custom.anicli = { enable = mkEnableOption ""; };
};
2024-11-21 09:24:15 +00:00
config = mkIf cfg.enable {
home.packages = [ (pkgs.callPackage ./anicli-ru.nix { }) ];
};
}