mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 09:03:51 +00:00
13 lines
286 B
Nix
13 lines
286 B
Nix
{ lib, config, True, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.module.wm.terminals.kitty;
|
|
in {
|
|
options = { module.wm.terminals.kitty = { enable = mkEnableOption ""; }; };
|
|
|
|
imports = [ ./sets.nix ./binds.nix ./colors.nix ];
|
|
config = mkIf cfg.enable { programs.kitty = True // { }; };
|
|
}
|
|
|