organize
This commit is contained in:
@@ -8,6 +8,8 @@
|
|||||||
|
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
|
||||||
|
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ll = "ls -l";
|
ll = "ls -l";
|
||||||
upd = "sudo nixos-rebuild switch --flake ~/Nixos/#desktop";
|
upd = "sudo nixos-rebuild switch --flake ~/Nixos/#desktop";
|
||||||
|
|||||||
@@ -1,11 +1,14 @@
|
|||||||
{pkgs, allowUnfree, ...}: {
|
{pkgs, termFont, ...}: {
|
||||||
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 = if (allowUnfree == true) then
|
font_family = termFont;
|
||||||
"Monolisa" else "JetBrainsMono Nerd Font";
|
|
||||||
|
# optimization
|
||||||
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