games yay

This commit is contained in:
twoneis 2024-03-01 23:50:47 +01:00
parent b73aec871f
commit 219d96458a
3 changed files with 12 additions and 0 deletions

9
modules/system/games.nix Normal file
View file

@ -0,0 +1,9 @@
{ lib, config, pkgs, ... }: lib.mkIf (config.withGames) {
environment.systemPackages = with pkgs; [
prismlauncher
];
programs.steam = {
enable = true;
};
}