From c2c4fa613f781afac0e21909dbf8a2f99ff479f7 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Wed, 5 Mar 2025 20:45:35 -0800 Subject: [PATCH] feat(home): Install CEmu --- modules/home/programs/gui/CEmu/default.nix | 16 ++++++++++++++++ modules/home/programs/gui/default.nix | 1 + 2 files changed, 17 insertions(+) create mode 100644 modules/home/programs/gui/CEmu/default.nix 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;