diff options
author | azahi <azat@bahawi.net> | 2025-02-02 01:48:24 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-02-02 01:48:24 +0300 |
commit | ba11ee8c7a130cebcf0b13640563ae748cef0e5f (patch) | |
tree | 86b8b52745708a49ca23486155726e02652745d2 /modules/games/steam.nix | |
parent | 2025-01-24 (diff) |
2025-02-02
Diffstat (limited to '')
-rw-r--r-- | modules/games/steam.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/games/steam.nix b/modules/games/steam.nix index d1da8ee..d8c6964 100644 --- a/modules/games/steam.nix +++ b/modules/games/steam.nix @@ -13,11 +13,15 @@ in config = mkIf cfg.enable { nixfiles.modules = { - common.nix.allowedUnfreePackages = [ - "steam" - "steam-run" - "steam-unwrapped" - ]; + common = { + nix.allowedUnfreePackages = [ + "steam" + "steam-run" + "steam-unwrapped" + ]; + + xdg.defaultApplications.steam = [ "x-scheme-handler/steam" ]; + }; games = { enable32BitSupport = true; |