aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-09 08:30:12 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-09 08:30:35 -0800
commitbb3eb255c853a1c72066bbc778c467ecd023a1d4 (patch)
tree72e52d2da18062fffc009a94a63625fd8ba1b3a3
parenthome-manager: fix typo (diff)
downloadinfra-bb3eb255c853a1c72066bbc778c467ecd023a1d4.tar.gz
terminal: alacritty is our terminal of choice
-rw-r--r--users/fcuny/desktop.nix9
-rw-r--r--users/fcuny/termnial.nix11
2 files changed, 12 insertions, 8 deletions
diff --git a/users/fcuny/desktop.nix b/users/fcuny/desktop.nix
index 6ded2a0..25c7d04 100644
--- a/users/fcuny/desktop.nix
+++ b/users/fcuny/desktop.nix
@@ -6,13 +6,6 @@
imports = [
./common.nix
./i3.nix
+ ./terminal.nix
];
-
- programs.alacritty = {
- enable = true;
-
- settings = {
- env.TERM = "xterm-256color";
- };
- };
}
diff --git a/users/fcuny/termnial.nix b/users/fcuny/termnial.nix
new file mode 100644
index 0000000..d1352e7
--- /dev/null
+++ b/users/fcuny/termnial.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, lib, ...}:
+
+{
+ programs.alacritty = {
+ enable = true;
+
+ settings = {
+ env.TERM = "xterm-256color";
+ };
+ };
+}