Modularizing the system

This commit is contained in:
2024-09-04 07:50:50 +02:00
parent f8c3653e49
commit fb35600660
8 changed files with 65 additions and 33 deletions

14
home/kitty.nix Normal file
View File

@@ -0,0 +1,14 @@
{ pkgs, config, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "JetBrainsMono Nerd Font";
size = 16;
};
theme = "Catppuccin-Mocha";
settings = {
enable_audio_bell = false;
};
};
}