mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 10:56:11 +01:00
28 lines
486 B
Nix
Executable File
28 lines
486 B
Nix
Executable File
{pkgs, ...}: {
|
|
users.users.mike.packages = with pkgs; [heroic];
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
gamescopeSession.enable = true;
|
|
extraCompatPackages = with pkgs; [proton-ge-bin];
|
|
};
|
|
|
|
gamemode = {
|
|
enable = true;
|
|
enableRenice = true;
|
|
settings = {};
|
|
};
|
|
|
|
gamescope = {
|
|
enable = true;
|
|
args = [
|
|
"-w 2560 -h 1440"
|
|
"-F nis"
|
|
"f"
|
|
];
|
|
};
|
|
};
|
|
}
|