Change default terminal to kitty
diff --git a/src/apps/personal/sway.nix b/src/apps/personal/sway.nix
index 6160a50..3816674 100644
--- a/src/apps/personal/sway.nix
+++ b/src/apps/personal/sway.nix
@@ -85,7 +85,7 @@
startup = [
{ command = "dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK"; }
];
- terminal = "alacritty";
+ terminal = "kitty";
up = "k";
window = {};
workspaceAutoBackAndForth = true;
diff --git a/src/system.nix b/src/system.nix
index e6a011d..ca41394 100644
--- a/src/system.nix
+++ b/src/system.nix
@@ -307,12 +307,14 @@
];
enableDefaultFonts = true;
+ fontDir.enable = true;
fontconfig = {
defaultFonts = {
- serif = [ "Twitter Color Emoji" "Fira Code Symbol" "Roboto Slab" ];
- sansSerif = [ "Twitter Color Emoji" "Fira Code Symbol" "Roboto" "Ubuntu" ];
- monospace = [ "Twitter Color Emoji" "Fira Code Symbol" "Roboto Mono" "Ubuntu Mono" ];
+ serif = [ "Roboto Slab" ];
+ sansSerif = [ "Roboto" "Ubuntu" ];
+ monospace = [ "Roboto Mono" "Ubuntu Mono" ];
+ emoji = [ "Twitter Color Emoji" ];
};
};
};