This commit is contained in:
dingfeng.wong
2025-07-18 14:07:33 +08:00
parent a2d6b6f460
commit bfe4a1cbae
+38
View File
@@ -134,5 +134,43 @@
ripgrep
fd
ranger
xterm
chromium
fish
xorg.xclock
# X11 and GUI support packages
xorg.xauth
xorg.xhost
xorg.libX11
xorg.libXext
xorg.libXrender
xorg.libXtst
fontconfig
freetype
dejavu_fonts
liberation_ttf
xorg.libXrandr
xorg.libXinerama
xorg.libXcursor
xorg.libXi
mesa
libGL
dbus
];
# Enable X11 forwarding support
services.xserver = {
enable = false; # We don't need a full desktop environment
};
# Font configuration for X11 applications
fonts = {
packages = with pkgs; [
dejavu_fonts
liberation_ttf
freetype
];
fontconfig.enable = true;
};
}