hm-modules: add kitty module
This commit is contained in:
parent
7a78f72d51
commit
82d7b27c1e
2 changed files with 15 additions and 0 deletions
13
modules/home/desktopPrograms/kitty/default.nix
Normal file
13
modules/home/desktopPrograms/kitty/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.settings.programs.kitty = {
|
||||
enable = lib.mkEnableOption "enable kitty terminal emulator";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.settings.programs.kitty.enable {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
enableFishIntegration = config.settings.shell.fish.enable;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue