14 lines
328 B
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";
|
|
};
|
|
};
|
|
}
|