Switch Vanguard to gamescope machine

This commit is contained in:
Evie Litherland-Smith 2024-02-12 12:59:02 +00:00
parent 608faf3fac
commit 64fb9ee7f3
3 changed files with 5 additions and 7 deletions

View file

@ -293,7 +293,9 @@
in
systemConfig {
inherit hostName user system;
systemModules = default.systemModules ++ [./system/games.nix];
systemModules = [./system/gamescope.nix];
serviceModules = [./services/sshd.nix];
homeModules = [./home/default.nix];
};
## Work

View file

@ -10,4 +10,5 @@
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [amdvlk rocmPackages.clr.icd];
hardware.opengl.extraPackages32 = [pkgs.driversi686Linux.amdvlk];
system.autoUpgrade.allowReboot = true;
}

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}: {
{...}: {
services.openssh = {
enable = true;
ports = [22];