Add steam

This commit is contained in:
Alexander
2026-03-25 15:12:46 +01:00
parent f3878ec426
commit 3bfc77d064
3 changed files with 22 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.dov.gaming;
in {
options.dov.gaming = {
enable = mkEnableOption "gaming config";
};
config = mkIf cfg.enable {
programs.steam = {
enable = true;
protontricks.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
};
}