added opt
This commit is contained in:
Regular → Executable
+3
-2
@@ -1,10 +1,11 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, allowUnfree, ...}: {
|
||||||
programs.kitty.enable = true;
|
programs.kitty.enable = true;
|
||||||
programs.kitty.settings = {
|
programs.kitty.settings = {
|
||||||
confirm_os_window_close = 0;
|
confirm_os_window_close = 0;
|
||||||
window_padding_width = 10;
|
window_padding_width = 10;
|
||||||
font_size = 12.0;
|
font_size = 12.0;
|
||||||
font_family = "JetBrainsMono Nerd Font";
|
font_family = if (allowUnfree == true) then
|
||||||
|
"Monolisa" else "JetBrainsMono Nerd Font";
|
||||||
input_delay = 0;
|
input_delay = 0;
|
||||||
repaint_delay = 2;
|
repaint_delay = 2;
|
||||||
sync_to_monitor = false;
|
sync_to_monitor = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user