Files
nix-fleet/modules/gaming/steam/steam.nix
2026-03-03 10:11:31 +01:00

18 lines
329 B
Nix

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