NixOps 部署机器的 nixos 选项?

nixos-option for NixOps deployed machine?

有一个命令 nixos-option 检查给定系统的选项值。在引擎盖下它做了类似的事情:

$ nix-instantiate --eval -E '
  let nixos = import <nixpkgs/nixos> { };
      opt = nixos.config.networking.firewall.allowedTCPPorts;
  in builtins.deepSeq opt opt
  '

$-> [ 1194 22 8081 80 443 4949 ]

但这不适用于 NixOps 部署的机器(那里没有配置)。有没有办法从部署机器上的 NixOps 部署配置中获取选项值?

尼克斯有the solution! ;)

Command nixops show-option

Synopsis

nixops show-option [--xml] machine option

Description

This command prints the value of the specified NixOS configuration option for the specified machine.