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 {
|
||||
marleyos.programs = {
|
||||
CEmu = enabled;
|
||||
calibre = enabled;
|
||||
discord = enabled;
|
||||
floorp = enabled;
|
||||
|
|
Loading…
Reference in a new issue