From 44964ce7cc45995833fbea01d2afa2c46c529ea9 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 16 Oct 2025 21:16:28 +0200 Subject: [PATCH] init alacritty Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- home/programs/alacritty/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home/programs/alacritty/default.nix diff --git a/home/programs/alacritty/default.nix b/home/programs/alacritty/default.nix new file mode 100644 index 0000000..4f02ad8 --- /dev/null +++ b/home/programs/alacritty/default.nix @@ -0,0 +1,12 @@ +# Alacritty is a fast, cross-platform, OpenGL terminal emulator. +{ + programs.alacritty = { + enable = true; + settings = { + window.padding = { + x = 10; + y = 10; + }; + }; + }; +}