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

16 lines
248 B
Nix

{
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
];
};
}