nix-config/modules/games/default.nix
2024-07-13 15:39:24 +02:00

10 lines
224 B
Nix

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