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