{ lib, config, ... }: { imports = [ ./ssh.nix ./tor.nix ]; options.components.nixos.boot.enable = lib.mkOption { type = lib.types.bool; default = false; }; config = lib.mkIf (config.components.nixos.boot.enable) { }; }