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

12 lines
229 B
Nix

{ config, lib, pkgs, ... }:
with lib; {
config = mkMerge [
# eidolon game launcher
(mkIf config.nathan.programs.games.launcher {
# Install the launcher
home.packages = with pkgs; [ eidolon ];
})
];
}