- update flakes - use overlay2 as docker volume driver for no btrfs dep - add xwayland
20 lines
346 B
Nix
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
|
|
];
|
|
}
|