diff --git a/modules/home/programs/gui/CEmu/default.nix b/modules/home/programs/gui/CEmu/default.nix new file mode 100644 index 0000000..2e7172b --- /dev/null +++ b/modules/home/programs/gui/CEmu/default.nix @@ -0,0 +1,16 @@ +{ + 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 + ]; + }; +} diff --git a/modules/home/programs/gui/default.nix b/modules/home/programs/gui/default.nix index 59f3cf8..373261a 100644 --- a/modules/home/programs/gui/default.nix +++ b/modules/home/programs/gui/default.nix @@ -11,6 +11,7 @@ in { config = lib.mkIf cfg.enable { marleyos.programs = { + CEmu = enabled; calibre = enabled; discord = enabled; floorp = enabled;