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.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/terminal.nix b/users/fcuny/terminal.nix
new file mode 100644
index 0000000..d1352e7
--- /dev/null
+++ b/users/fcuny/terminal.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, lib, ...}:
+
+{
+ programs.alacritty = {
+ enable = true;
+
+ settings = {
+ env.TERM = "xterm-256color";
+ };
+ };
+}