tomato/modules/urxvt/home.nix

11 lines
161 B
Nix
Raw Normal View History

2021-04-27 18:47:09 -04:00
{ pkgs, ... }: {
programs.urxvt = {
enable = true;
scroll.bar.enable = false;
};
xresources.extraConfig = ''
URxvt.internalBorder: 16
'';
}