11 lines
185 B
Nix
11 lines
185 B
Nix
{ lib, config, ... }: lib.mkIf (config.withGames) {
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.gamescope = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.gamemode.enable = true;
|
|
}
|