Compare commits
3 commits
6898c0ddae
...
535f713c79
Author | SHA1 | Date | |
---|---|---|---|
535f713c79 | |||
3c87abea9d | |||
2e704b22f8 |
2 changed files with 14 additions and 0 deletions
|
@ -92,6 +92,8 @@ in
|
|||
partOf = [ "graphical-session.target" ];
|
||||
};
|
||||
|
||||
environment.variables.FREETYPE_PROPERTIES = "cff:no-stem-darkening=0 autofitter:no-stem-darkening=0";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
dmenu
|
||||
xclip
|
||||
|
|
|
@ -28,6 +28,18 @@ in
|
|||
--jitter ${toString (cfg.threshold - 1)} \
|
||||
${lib.concatStrings cfg.extraOptions}
|
||||
'';
|
||||
|
||||
home.file.".xinitrc".text = ''
|
||||
[ -f ~/.Xresources ] && ${lib.getExe pkgs.xorg.xrdb} -merge ~/.Xresources
|
||||
'';
|
||||
|
||||
xresources.properties = {
|
||||
"Xft.lcdfilter" = "lcddefault";
|
||||
"Xft.hintstyle" = "hintslight";
|
||||
"Xft.hinting" = "1";
|
||||
"Xft.antialias" = "1";
|
||||
"Xft.rgba" = "none";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue