dotfiles/hosts/thinkpad/configs/xresources.nix

14 lines
328 B
Nix

{ user, ... }:
{
home-manager.users.${user} = {
xresources.properties = {
"XTerm*faceName" = "Jetbrains Mono Nerd font";
"XTerm*visualBell" = true; # turn off the bell that makes me go insane
"*.background" = "#191830";
"*.foreground" = "#FFFFFF";
"*.cursorColor" = "#e4e4e4";
};
};
}