nixos/system/vylpes-desktop/configuration.nix
2024-08-17 20:57:14 +01:00

28 lines
460 B
Nix

{pkgs, user, ...}: {
imports = [
../shared.nix
./hardware-configuration.nix
];
networking = {
hostName = "vylpes-desktop";
};
services = {
xserver = {
displayManager = {
# FIXME: Add proper xranger script for my setup
setupCommands = ''
'';
};
videoDrivers = [ "nvidia" ];
};
};
hardware.nvidia = {
modesetting.enable = true;
forceFullCompositionPipeline = true;
};
}