Files
nix-fleet/modules/gaming/sys/steam.nix
2026-03-03 23:06:45 +01:00

18 lines
340 B
Nix

{ ... }: {
flake.nixosModules.gaming-sys-steam = { pkgs-unstable, ... }: {
programs.steam = {
enable = true;
extest.enable = true;
extraCompatPackages = with pkgs-unstable; [
proton-ge-bin
];
extraPackages = with pkgs-unstable; [
gamescope
mangohud
];
};
};
}