nixos-config/hosts/desktop.nix
Luke Else 3106cd4b62
Some checks failed
NixOS Configuration Check / nixos-check (push) Failing after 23s
Update monitor confuig
2025-04-24 19:49:16 +01:00

22 lines
444 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "desktop";
# NVIDIA proprietary drivers
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia = {
modesetting.enable = true;
open = false;
nvidiaSettings = true;
};
# Dual display configuration
services.xserver = {
screenSection = ''
Option "metamodes" "HDMI-0: 1920x1080 +0+1080, DP-0: 1920x1080 +1920+1080, DP-1: 2560x1440 +3840+0"
'';
};
}