Added ES-DE

This commit is contained in:
Jan-Bulthuis 2025-01-26 13:28:36 +01:00
parent 8e0e511335
commit 1a2d9b6490
4 changed files with 26 additions and 1 deletions

View File

@ -3,6 +3,7 @@
{
imports = [
./emulators/ryujinx.nix
./launchers/es-de.nix
./launchers/modrinth.nix
./launchers/steam.nix
];

View File

@ -10,7 +10,7 @@ let
cfg = config.modules.ryujinx;
in
{
options.modules.modrinth = {
options.modules.ryujinx = {
enable = mkEnableOption "ryujinx";
};

View File

@ -0,0 +1,22 @@
{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.modules.es-de;
in
{
options.modules.es-de = {
enable = mkEnableOption "Emulation Station Desktop Edition";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
emulationstation-de
];
};
}

View File

@ -65,6 +65,8 @@
# Gaming
steam.enable = true;
modrinth.enable = true;
es-de.enable = true;
ryujinx.enable = true;
# Media
spotify.enable = true;