From 5e2fbc31cba9f5a0dceda4af79341e215df58f38 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 14 Apr 2023 11:45:33 +0200 Subject: [PATCH] Sxhkd: switch terminal --- hm_modules/sxhkd.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hm_modules/sxhkd.nix b/hm_modules/sxhkd.nix index dd86308..cf3c918 100644 --- a/hm_modules/sxhkd.nix +++ b/hm_modules/sxhkd.nix @@ -1,7 +1,9 @@ { pkgs, ... }: { imports = [ - # ./nautilus.nix + ./nautilus.nix # ./thunar.nix + ./kitty.nix + ./alacritty.nix ]; home.packages = builtins.attrValues { inherit (pkgs) @@ -10,8 +12,8 @@ }; services.sxhkd = let - primaryTerminal = "kitty"; - secondaryTerminal = "terminator"; + primaryTerminal = "alacritty"; + secondaryTerminal = "kitty"; fileManager = "nautilus"; secondaryFileManager = "thunar"; emojiChooser = "rofimoji --skin-tone light -a copy";