15 lines
276 B
Nix
15 lines
276 B
Nix
|
{pkgs, lib, config, ...}: {
|
||
|
options = {
|
||
|
gaming.general.enable = lib.mkEnableOption "Enable PC gaming apps";
|
||
|
};
|
||
|
|
||
|
config = mkIf config.gaming.general.enable; {
|
||
|
home.packages = with pkgs; [
|
||
|
steam
|
||
|
steam-run
|
||
|
heroic
|
||
|
prismlauncher
|
||
|
];
|
||
|
};
|
||
|
}
|