add gaming option to home-manager
This commit is contained in:
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user