System/home-manager/linux/programs/games.nix

12 lines
229 B
Nix
Raw Normal View History

2022-10-13 00:03:16 -04:00
{ config, lib, pkgs, ... }:
with lib; {
config = mkMerge [
# eidolon game launcher
(mkIf config.nathan.programs.games.launcher {
# Install the launcher
home.packages = with pkgs; [ eidolon ];
2022-10-13 00:03:16 -04:00
})
];
}