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; [
|
2025-03-06 05:15:49 +00:00
|
|
|
# cemu-ti
|
|
|
|
marleyos.CEmu-TI-84-Plus-CE
|
2025-03-06 04:45:35 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|