update: misc
This commit is contained in:
parent
a4924cfb7a
commit
f645b12a6e
14 changed files with 75 additions and 513 deletions
22
home-manager/modules/kitty/default.nix
Normal file
22
home-manager/modules/kitty/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.lily.kitty;
|
||||
in {
|
||||
options.lily.kitty = {
|
||||
enable = lib.mkEnableOption "activate kitty";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
window_padding_width = 5;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue