aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/terminal.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/terminal.nix')
-rw-r--r--users/fcuny/terminal.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/users/fcuny/terminal.nix b/users/fcuny/terminal.nix
deleted file mode 100644
index ca3b2e8..0000000
--- a/users/fcuny/terminal.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, pkgs, lib, ...}:
-
-{
- programs.alacritty = {
- enable = true;
-
- settings = {
- env = {
- TERM = "xterm-256color";
- WINIT_X11_SCALE_FACTOR = "1.2";
- };
- draw_bold_text_with_bright_colors = true;
- selection = {
- save_to_clipboard = true;
- };
- font = {
- size = 12;
- };
- };
- };
-}