feat: steam and gamesession

This commit is contained in:
Guz
2025-02-07 16:11:14 -03:00
parent 87cc9a7ff8
commit 87f028aae6

View File

@@ -1,4 +1,8 @@
{lib, ...}: {
{
lib,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
./gpu-configuration.nix
@@ -16,4 +20,12 @@
hostName = lib.mkForce "figther";
wireless.enable = lib.mkForce true;
};
# Steam (cannot be [properly] installed just in one user)
programs.steam.enable = true;
programs.steam.gamescopeSession.enable = true;
programs.steam.extraCompatPackages = with pkgs; [
proton-ge-bin
];
}