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"; + } + ]; + }; + }; +}