Compare commits

..

5 Commits

Author SHA1 Message Date
68cb682734
feat(hosts/orion): enable powersave for wifi
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 48s
2024-08-11 17:04:25 -05:00
152abce302
build(nix): update flake.lock
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 49s
2024-08-11 17:04:25 -05:00
ed142bbb06
chore(vesktop): update settings.json 2024-08-11 17:04:24 -05:00
3ca5da6e77
feat(hm/price): enable Nvidia PRIME offloading for Steam
We setup a custom `steam.desktop` entry for our applications that makes
Steam run on the Nvidia graphics card. As a consequence, all processes
launched by steam will likewise offload their graphical rendering to the
discrete graphics card as well.
2024-08-11 17:04:24 -05:00
5fe93f5dfb
feat(hosts/orion): enable Nvidia GPU w/ PRIME 2024-08-11 17:04:24 -05:00

View File

@ -1,6 +1,9 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
{ {
services.xserver.videoDrivers = [ "nvidia" ]; services.xserver.videoDrivers = [
"intel"
"nvidia"
];
environment.variables.VDPAU_DRIVER = "va_gl"; environment.variables.VDPAU_DRIVER = "va_gl";
hardware = { hardware = {
enableRedistributableFirmware = true; enableRedistributableFirmware = true;