Files
nixos-dotfiles/modules/desktop/gaming/steam.nix
2025-04-13 15:09:14 +08:00

25 lines
321 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "steam";
optionPath = [
"desktop"
"gaming"
"steam"
];
config' = {
programs.steam = {
enable = true;
package = pkgs.steam;
extraPackages = with pkgs; [
gamescope
];
};
};
}