12 lines
277 B
Nix
12 lines
277 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
xresources.properties = {
|
|
"xterm*utf8" = 1;
|
|
"xterm*locale" = true;
|
|
"xterm*faceName" = "Moralerspace Neon:size=12:antialias=true";
|
|
"xterm*reverseVideo" = "on";
|
|
"xterm*saveLines" = 10000;
|
|
"xterm*geometry" = "80x24";
|
|
};
|
|
}
|