nix-config/modules/games/default.nix
2024-05-09 20:17:37 +02:00

9 lines
173 B
Nix

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