marleyos/modules/home/programs/CEmu.nix
2025-05-31 17:24:38 -07:00

17 lines
309 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.marleyos.programs.CEmu;
in {
options.marleyos.programs.CEmu.enable = lib.mkEnableOption "CEmu";
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
home.packages = with pkgs; [
# cemu-ti
marleyos.CEmu-TI-84-Plus-CE
];
};
}