Evie Litherland-Smith
5a18c254ac
Add platform specific hyprland/hyprpaper/waybar config into platform specific home-manager files, better integration with nix and no conflicing links
13 lines
301 B
Nix
13 lines
301 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [ pkgs.mesa ];
|
|
programs.gamescope.enable = true;
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
gamescopeSession.enable = true;
|
|
};
|
|
hardware.steam-hardware.enable = true;
|
|
hardware.opengl.driSupport32Bit = true;
|
|
}
|