add gaming option to home-manager

This commit is contained in:
2025-07-13 02:47:15 +02:00
parent 43785dcc62
commit 9cada81de6
5 changed files with 16 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ config, lib, pkgs, osConfig, ... }:
{
options.lumpiastyHome.gaming = lib.mkEnableOption "Gaming account";
config = lib.mkIf config.lumpiastyHome.gaming {
programs.lutris = {
enable = true;
steamPackage = pkgs.steam;
};
};
}