15 lines
297 B
Nix
15 lines
297 B
Nix
|
{
|
||
|
home.file.".Xresources" = {
|
||
|
recursive = true;
|
||
|
text = ''
|
||
|
!st terminal
|
||
|
st.alpha: 0.8
|
||
|
*.font: monospace:pixelsize=21:antialias=true:autohint=true;
|
||
|
*.font2: NotoColorEmoji:pixelsize=19:antialias=true:autohint=true;
|
||
|
|
||
|
! dwm
|
||
|
dwm.borderpx: 3
|
||
|
'';
|
||
|
};
|
||
|
}
|