13 lines
284 B
Nix
13 lines
284 B
Nix
{ pkgs, ... }:
|
|
pkgs.writeText "Xresources" ''
|
|
Xft.dpi: 96
|
|
Xft.antialias: true
|
|
Xft.hinting: true
|
|
Xft.rgba: rgb
|
|
Xft.autohint: false
|
|
Xft.hintstyle: hintslight
|
|
Xft.lcdfilter: lcddefault
|
|
|
|
Xcursor.theme: xcursor-breeze
|
|
Xcursor.size: 0
|
|
''
|