27 lines
541 B
Nix
27 lines
541 B
Nix
|
{ pkgs, lib, config, ... }: {
|
||
|
programs.steam.enable = true;
|
||
|
programs.steam.extraCompatPackages = [
|
||
|
pkgs.proton-ge
|
||
|
];
|
||
|
|
||
|
startupApplications = [
|
||
|
"${pkgs.steam}/bin/steam"
|
||
|
];
|
||
|
|
||
|
systemd.user.services.x11-ownership = rec {
|
||
|
script = ''
|
||
|
doas chown ${config.mainuser} /tmp/.X11-unix
|
||
|
'';
|
||
|
after = [ "hyprland-session.target" ];
|
||
|
wantedBy = [ "hyprland-session.target" ];
|
||
|
};
|
||
|
|
||
|
persist.state.homeDirectories = [
|
||
|
".local/share/Steam"
|
||
|
".steam"
|
||
|
] ++ [
|
||
|
# Games configs
|
||
|
".config/WarThunder"
|
||
|
];
|
||
|
}
|