marleyos/modules/home/programs/gui/CEmu/default.nix

18 lines
284 B
Nix
Raw Normal View History

2025-03-06 04:45:35 +00:00
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.CEmu;
in {
options.marleyos.programs.CEmu.enable = lib.mkEnableOption "CEmu";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
# cemu-ti
marleyos.CEmu-TI-84-Plus-CE
2025-03-06 04:45:35 +00:00
];
};
}