nix-config/system/packages/appimage.nix

15 lines
274 B
Nix
Raw Normal View History

{
lib,
config,
...
}:
with lib; let
2025-07-05 00:02:39 +02:00
cfg = config.system.packages.appimage;
in {
2025-07-05 00:02:39 +02:00
options.system.packages.appimage.enable = mkEnableOption "Enables AppImage support";
config.programs.appimage = mkIf cfg.enable {
inherit (cfg) enable;
binfmt = true;
};
}