48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.desktop.xserver;
|
|
in
|
|
with lib;
|
|
mkIf cfg.enable {
|
|
xresources.properties = {
|
|
"*background" = "#1E1E2E";
|
|
"*foreground" = "#CDD6F4";
|
|
"*cursorColor" = "#F5E0DC";
|
|
"*color0" = "#45475A";
|
|
"*color8" = "#585B70";
|
|
"*color1" = "#F38BA8";
|
|
"*color9" = "#F38BA8";
|
|
"*color2" = "#A6E3A1";
|
|
"*color10" = "#A6E3A1";
|
|
"*color3" = "#F9E2AF";
|
|
"*color11" = "#F9E2AF";
|
|
"*color4" = "#89B4FA";
|
|
"*color12" = "#89B4FA";
|
|
"*color5" = "#F5C2E7";
|
|
"*color13" = "#F5C2E7";
|
|
"*color6" = "#94E2D5";
|
|
"*color14" = "#94E2D5";
|
|
"*color7" = "#BAC2DE";
|
|
"*color15" = "#A6ADC8";
|
|
"URxvt.letterSpace" = "-1";
|
|
"URxvt.lineSpace" = "0";
|
|
"URxvt.saveline" = "10480";
|
|
"URxvt.scrollBar" = "false";
|
|
"URxvt.urgentOnBell" = "true";
|
|
"URxvt.font" = "xft:FiraCode Nerd Font Mono:size=9";
|
|
"URxvt.fontBold" = "xft:FiraCode Nerd Font Mono:bold:size=9";
|
|
"URxvt.depth" = "32";
|
|
"URxvt.background" = "[95]#1E1E2E";
|
|
"Xft.autohint" = "0";
|
|
"Xft.lcdfilter" = "lcddefault";
|
|
"Xft.hintstyle" = "hintslight";
|
|
"Xft.hinting" = "1";
|
|
"Xft.antialias" = "1";
|
|
"Xft.rgba" = "rgb";
|
|
"XTerm*faceName" = "FiraCode Nerd Font Mono:bold:size=9";
|
|
};
|
|
}
|