Modularize config

This commit is contained in:
2026-01-16 21:35:28 +01:00
parent 19cd15ebc5
commit dcb0ea1961
5 changed files with 102 additions and 83 deletions

8
programs/kitty.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
settings.confirm_quit = false;
};
}