prismlauncher in games

This commit is contained in:
twoneis 2024-07-13 15:39:24 +02:00
parent ffcddf22f5
commit 84aa16be66

View file

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