nix-config/modules/games/default.nix
2024-07-20 21:46:24 +02:00

10 lines
235 B
Nix

{ lib, config, pkgs, ... }: lib.mkIf config.withGames {
programs.steam.enable = true;
programs.gamemode.enable = true;
home-manager.users.${config.username} = {
home.packages = with pkgs; [
prismlauncher
];
};
}