Switch Vanguard to gamescope machine
This commit is contained in:
parent
608faf3fac
commit
64fb9ee7f3
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{...}: {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
ports = [22];
|
||||
|
|
Loading…
Reference in a new issue