Evie Litherland-Smith
039cab92de
Add ferdium and window rule Move waybar overlay into hyprland expression
23 lines
468 B
Nix
23 lines
468 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [ "steam" "steam-original" "steam-run" ];
|
|
hardware = {
|
|
opengl.driSupport32Bit = true;
|
|
steam-hardware.enable = true;
|
|
};
|
|
programs = {
|
|
xwayland.enable = true;
|
|
gamescope = {
|
|
enable = true;
|
|
capSysNice = true;
|
|
};
|
|
steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
gamescopeSession.enable = true;
|
|
};
|
|
};
|
|
}
|