10 lines
156 B
Nix
10 lines
156 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; lib.mkIf config.home.gaming.enable [
|
|
heroic
|
|
prismlauncher
|
|
steam
|
|
steam-run
|
|
];
|
|
}
|