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