mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Modularizing the system
This commit is contained in:
14
home/kitty.nix
Normal file
14
home/kitty.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user