split out pkg installs to respective files
This commit is contained in:
parent
10dfbc3234
commit
89dc32e96a
8 changed files with 155 additions and 202 deletions
14
common/kitty.nix
Normal file
14
common/kitty.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
kitty
|
||||
];
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
};
|
||||
shellIntegration.enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue