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