9 lines
155 B
Nix
9 lines
155 B
Nix
{ lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.gamescope = {
|
|
enable = true;
|
|
};
|
|
}
|