mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-10 02:02:36 +08:00
* Import my old xmonad config * import taffybar as well * xmonad working * break features into individual files * break features into individual files * Add fonts, and enable taffybar * trackpad behaviour
11 lines
247 B
Nix
11 lines
247 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.xserver.dpi = 192;
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
${pkgs.xorg.xrdb}/bin/xrdb -merge <<EOF
|
|
Xft.dpi: 192
|
|
Xcursor.theme: Adwaita
|
|
Xcursor.size: 64
|
|
EOF
|
|
'';
|
|
}
|