nixos-config/modules/home/programs/misc/gaming/launchers/default.nix

10 lines
157 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
2024-10-09 03:36:08 -04:00
heroic
prismlauncher
2024-12-25 02:09:04 -05:00
steam
steam-run
2024-10-09 03:36:08 -04:00
];
}