20 lines
238 B
Nix
20 lines
238 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
home,
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.modules.kitty;
|
|
in
|
|
{
|
|
options.modules.kitty = {
|
|
enable = lib.mkEnableOption "kitty configuration module";
|
|
};
|
|
config = lib.mkIf cfg.enable {
|
|
};
|
|
}
|