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
+2
View File
@@ -105,6 +105,8 @@
window-manager.hypr.enable = true;
display-manager.ly.enable = true;
gaming.enable = true;
};
###
+1
View File
@@ -14,5 +14,6 @@
./display-manager
./gitlab
./jenkins
./gaming
];
}
+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 ];
};
};
}