From 4f2121798eed20ab3c6feef223ac98a66f1266dc Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 1 May 2024 00:41:10 -0400 Subject: [PATCH] feat(applications): add alacritty --- user/modules/applications/alacritty.nix | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/modules/applications/alacritty.nix diff --git a/user/modules/applications/alacritty.nix b/user/modules/applications/alacritty.nix new file mode 100644 index 0000000..e24e878 --- /dev/null +++ b/user/modules/applications/alacritty.nix @@ -0,0 +1,28 @@ +{ + programs.alacritty = { + enable = true; + settings = { + window = { + decorations = "Buttonless"; + }; + font = { + size = 14; + offset.y = 4; + normal = { + family = "ZedMono Nerd Font"; + style = "Extended Light"; + }; + bold.style = "Extended Bold"; + italic.style = "Extended Italic"; + bold_italic.style = "Extended Bold Italic"; + }; + key_bindings = [ + { + key = "Slash"; + mods = "Control"; + chars = "\\x1f"; + } + ]; + }; + }; +}