nix-config/modules/games/default.nix
2024-07-02 03:42:35 +02:00

11 lines
253 B
Nix

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