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