1
0
forked from extern/nix-config
donovanglover-nix-config/desktop/xresources/default.nix
2023-05-18 15:54:15 -04:00

13 lines
269 B
Nix

{
home-manager.sharedModules = [{
xresources.properties = {
"Xft.hinting" = true;
"Xft.antialias" = true;
"Xft.autohint" = false;
"Xft.lcdfilter" = "lcddefault";
"Xft.hintstyle" = "hintfull";
"Xft.rgba" = "rgb";
};
}];
}