nix-config/modules/nix/emulator/desmume.nix
smayzy 923232aed9
All checks were successful
nix flake show / show-flake (push) Successful in 35s
add desmume
2025-08-02 17:28:42 +02:00

21 lines
324 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.desmume.enable = mkOption {
type = types.bool;
default = false;
description = "enable desmume";
};
config = mkIf config.smayzy.desmume.enable {
environment.systemPackages = with pkgs; [ desmume ];
};
}