Add kitty, obs, and scripts skeleton code
Also refactors some flake.nix code to not use dictionaries
This commit is contained in:
parent
c9cd42eaa3
commit
c97d94408e
7 changed files with 111 additions and 121 deletions
12
programs/kitty/default.nix
Normal file
12
programs/kitty/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font_family = "Cascadia Code";
|
||||
font_size = 18;
|
||||
enable_audio_bell = "no";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue