9 lines
173 B
Nix
9 lines
173 B
Nix
{ lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
|
|
environment.systemPackages = with pkgs; [
|
|
prismlauncher
|
|
];
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
}
|