added kitty shell, module organization changes.

This commit is contained in:
Gabe Venberg 2024-03-24 22:09:58 -05:00
parent 7ff04254fb
commit a26d6a1e02
11 changed files with 72 additions and 39 deletions

View file

@ -0,0 +1,15 @@
{
config,
pkgs,
lib,
...
}: {
programs.kitty = {
enable=true;
font={
package=pkgs.fira-code-nerdfont;
name="Fira Code";
};
theme="Gruvbox Dark";
};
}