mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 19:43:52 +00:00
13 lines
291 B
Nix
13 lines
291 B
Nix
|
{ lib, config, True, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.programs.cli.joshuto;
|
||
|
in {
|
||
|
options = { module.programs.cli.joshuto = { enable = mkEnableOption ""; }; };
|
||
|
|
||
|
imports = [ ./mimetype.nix ./settings.nix ./theme.nix ];
|
||
|
config = mkIf cfg.enable { programs.joshuto = True; };
|
||
|
}
|
||
|
|