nix-config/system/packages/appimage.nix

15 lines
278 B
Nix
Raw Normal View History

{
lib,
config,
...
}:
with lib; let
2025-08-15 21:33:22 +02:00
cfg = config.mySystem.packages.appimage;
in {
2025-08-15 21:33:22 +02:00
options.mySystem.packages.appimage.enable = mkEnableOption "Enables AppImage support";
config.programs.appimage = mkIf cfg.enable {
inherit (cfg) enable;
binfmt = true;
};
}