23 lines
287 B
Nix
23 lines
287 B
Nix
|
{
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
}
|