Evie Litherland-Smith
0889818512
Move commonModule into system/default.nix Keep most essential parts (user definition, home-manager init) in flake.nix but move rest to system/default.nix Remove some tui expressions from home and add all to home/default.nix, will always want those so always use Disable gamescope session unless gamescope.nix imported Move various home.package definitions to environment.systemPackage in system/ expressions, located based on appropriate use Move wallpapers directory due to restructure, no other changes to it
22 lines
435 B
Nix
22 lines
435 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [ prismlauncher ];
|
|
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 = lib.mkDefault false;
|
|
};
|
|
};
|
|
}
|