nix/os-mods/desktop/gaming.nix
Tristan Druyen 4187e3dc51
Various tweaks
- update flakes
- use overlay2 as docker volume driver for no btrfs dep
- add xwayland
2024-01-11 07:24:44 +01:00

20 lines
346 B
Nix

{ config
, lib
, pkgs
, ...
}: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
programs.xwayland.enable = true;
chaotic.steam.extraCompatPackages = with pkgs; [
proton-ge-custom
];
environment.systemPackages = with pkgs.unstable-os; [
gamescope
];
}