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/modules/home-manager/features/desktop

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