split out pkg installs to respective files

This commit is contained in:
Noa Aarts 2024-03-01 13:46:10 +01:00
parent 10dfbc3234
commit 89dc32e96a
8 changed files with 155 additions and 202 deletions

14
common/kitty.nix Normal file
View 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;
};
}