Added ES-DE
This commit is contained in:
parent
8e0e511335
commit
1a2d9b6490
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./emulators/ryujinx.nix
|
./emulators/ryujinx.nix
|
||||||
|
./launchers/es-de.nix
|
||||||
./launchers/modrinth.nix
|
./launchers/modrinth.nix
|
||||||
./launchers/steam.nix
|
./launchers/steam.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -10,7 +10,7 @@ let
|
||||||
cfg = config.modules.ryujinx;
|
cfg = config.modules.ryujinx;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.modrinth = {
|
options.modules.ryujinx = {
|
||||||
enable = mkEnableOption "ryujinx";
|
enable = mkEnableOption "ryujinx";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -65,6 +65,8 @@
|
||||||
# Gaming
|
# Gaming
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
modrinth.enable = true;
|
modrinth.enable = true;
|
||||||
|
es-de.enable = true;
|
||||||
|
ryujinx.enable = true;
|
||||||
|
|
||||||
# Media
|
# Media
|
||||||
spotify.enable = true;
|
spotify.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue