nix-config/modules/games/default.nix
2024-07-02 01:32:41 +02:00

11 lines
255 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
];
};
}