Removed ALVR

This commit is contained in:
Alexandre 2026-02-09 11:49:40 +01:00
parent 94a8c586aa
commit 8693d2b5aa
4 changed files with 12 additions and 2 deletions

View File

@ -21,7 +21,7 @@
isNormalUser = true;
description = "Alexandre Delcamp--Enache";
shell= pkgs.zsh;
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "video" "render" ];
};
};
};

View File

@ -8,9 +8,10 @@ in
inputs.sops-nix.nixosModules.sops
modules.common.module
modules.nixos.secrets
modules.nixos.gaming.amd
modules.nixos.gaming.starCitizen
modules.nixos.gaming.steam
modules.nixos.gaming.vr
#modules.nixos.gaming.vr
modules.common.spotify
];
}

View File

@ -25,6 +25,7 @@
nixos = {
gaming = {
nvidia = ./nixos/gaming/nvidia.nix;
amd = ./nixos/gaming/amd.nix;
starCitizen = ./nixos/gaming/starCitizen.nix;
steam = ./nixos/gaming/steam.nix;
vr = ./nixos/gaming/vr.nix;

View File

@ -0,0 +1,8 @@
{pkgs, ...}:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
}