Workstation module for graphics

This commit is contained in:
2025-08-31 04:59:17 +02:00
parent 7a7b3315d0
commit 0644a1a54f
6 changed files with 33 additions and 101 deletions

View File

@@ -0,0 +1,29 @@
{ pkgs, ... }:
{
# Basic services
services.printing.enable = true;
environment = {
sessionVariables = {
NIXOS_OZONE_WL = "1";
QTWEBENGINE_CHROMIUM_FLAGS="--blink-settings=darkModeEnabled=true";
QT_QPA_PLATFORMTHEME = "qt6ct";
WLR_NO_HARDWARE_CURSORS= "1";
QT_STYLE_OVERRIDE = "kvantum";
QT_QPA_PLATFORM="xcb";
};
};
fonts.packages = with pkgs; [
nerd-fonts.fira-code
];
services.xserver.displayManager.gdm.enable = true; # We are pre 25.11
programs = {
hyprland.enable = true;
firefox.enable = true;
};
}