feat: steam proton

This commit is contained in:
2024-11-19 20:28:31 +01:00
parent e51e56069c
commit 3d4b7910c0
3 changed files with 10 additions and 1 deletions

View File

@@ -63,7 +63,6 @@
# > gaming < #
prismlauncher
classicube
steam
# > development < #
podman

9
home/programs/steam.nix Normal file
View File

@@ -0,0 +1,9 @@
{ inputs, pkgs, ... }:
{
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
]
};
}