diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-12 19:46:14 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-12 19:46:14 -0800 |
commit | 93765716159b481429d2982a3ef81f1659825c61 (patch) | |
tree | df7dd4ed13c983d2c43b9ba6cff3d0d7ca07729f /users | |
parent | wofi: color + nixfmt (diff) | |
download | world-93765716159b481429d2982a3ef81f1659825c61.tar.gz |
terminal: nixfmt
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/terminal.nix | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/users/fcuny/desktop/terminal.nix b/users/fcuny/desktop/terminal.nix index 293e1f3..d67d383 100644 --- a/users/fcuny/desktop/terminal.nix +++ b/users/fcuny/desktop/terminal.nix @@ -1,13 +1,11 @@ -{ config, pkgs, lib, ...}: +{ config, pkgs, lib, ... }: { programs.alacritty = { enable = true; settings = { - env = { - TERM = "xterm-256color"; - }; + env = { TERM = "xterm-256color"; }; colors = { primary = { background = "#ffffff"; @@ -16,12 +14,8 @@ }; live_config_reload = true; draw_bold_text_with_bright_colors = true; - selection = { - save_to_clipboard = true; - }; - font = { - size = 12; - }; + selection = { save_to_clipboard = true; }; + font = { size = 12; }; cursor = { style.blinking = "Never"; unfocused_hollow = true; |