Replace alacritty with st

This commit is contained in:
Oliver Davies 2025-02-13 23:10:00 +00:00
parent 0a345df1a5
commit 5d854d25d2
7 changed files with 1 additions and 63 deletions
nix
home/opdavies/hosts
hosts/t490/services
lib/shared
modules/home-manager/features/desktop
overlays

View file

@ -12,9 +12,5 @@
syncthing.enable = true;
tmux-sessionizer.enable = true;
};
desktop = {
alacritty.enable = false;
};
};
}

View file

@ -2,6 +2,7 @@
config,
lib,
pkgs,
self,
...
}:

View file

@ -28,10 +28,6 @@
neovim.enable = lib.mkDefault true;
tmux.enable = lib.mkDefault true;
};
desktop = {
alacritty.enable = lib.mkDefault true;
};
}
];
}

View file

@ -1,40 +0,0 @@
{
config,
lib,
...
}:
with lib;
{
options.features.desktop.alacritty.enable = mkEnableOption "Enable Alacritty";
config = mkIf config.features.desktop.alacritty.enable {
programs.alacritty = {
enable = true;
settings = {
env = {
TERM = "screen-256color";
};
colors.primary.background = "#000000";
window.padding = {
x = 10;
y = 10;
};
font = {
size = 15;
normal.family = "JetBrainsMono Nerd Font ";
};
terminal.shell = {
program = "zsh";
};
};
};
};
}

View file

@ -1,6 +1,5 @@
{
imports = [
./alacritty.nix
./copyq.nix
./discord.nix
./espanso.nix

View file

@ -14,7 +14,6 @@
patches = [
"${self}/patches/dwm/add-custom-commands-and-keys.patch"
"${self}/patches/dwm/change-mod-key.patch"
"${self}/patches/dwm/change-termcmd.patch"
"${self}/patches/dwm/dwm-hide_vacant_tags-6.4.diff"
];
};