added lutris

This commit is contained in:
twoneis 2024-07-02 01:32:41 +02:00
parent e0f3c025fb
commit 5af0909a70

View file

@ -1,11 +1,11 @@
{ lib, config, ... }: lib.mkIf (config.withGames) { { lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
programs.steam = { programs.steam.enable = true;
enable = true; programs.gamescope.enable = true;
};
programs.gamescope = {
enable = true;
};
programs.gamemode.enable = true; programs.gamemode.enable = true;
home-manager.users.twoneis = {
home.packages = with pkgs; [
lutris
];
};
} }