feat(home): Install CEmu
This commit is contained in:
parent
dd259191d9
commit
c2c4fa613f
2 changed files with 17 additions and 0 deletions
16
modules/home/programs/gui/CEmu/default.nix
Normal file
16
modules/home/programs/gui/CEmu/default.nix
Normal file
|
@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ in {
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
marleyos.programs = {
|
marleyos.programs = {
|
||||||
|
CEmu = enabled;
|
||||||
calibre = enabled;
|
calibre = enabled;
|
||||||
discord = enabled;
|
discord = enabled;
|
||||||
floorp = enabled;
|
floorp = enabled;
|
||||||
|
|
Loading…
Reference in a new issue