Moved openGL config into steam module

I originally added the openGL config for steam so I think it makes sense
to define that in the steam module.
This commit is contained in:
Alejandro Angulo 2023-03-25 09:11:44 -07:00
parent 2627bc30d5
commit eb6422e943
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
2 changed files with 6 additions and 6 deletions

View file

@ -18,5 +18,11 @@ in {
remotePlay.openFirewall = true; remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true; dedicatedServer.openFirewall = true;
}; };
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
}; };
} }

View file

@ -36,12 +36,6 @@
boot.binfmt.emulatedSystems = ["aarch64-linux" "armv6l-linux"]; boot.binfmt.emulatedSystems = ["aarch64-linux" "armv6l-linux"];
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
networking.hostName = "gospel"; # Define your hostname. networking.hostName = "gospel"; # Define your hostname.