dotfiles/nix/secret-lib/network.nix
Magic_RB a9faa2c7b4
Add full blowhole system
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-10-18 00:13:22 +02:00

23 lines
399 B
Nix

{ lib, ... }:
with lib;
{
options = {
network.ips = mkOption {
description = ''
Host IPs.
'';
type = with types; attrsOf (oneOf [ str (attrsOf str) ]);
default = {};
};
network.networks = mkOption {
description = ''
Network IPs.
'';
type = with types; attrsOf (oneOf [ str (attrsOf str) ]);
default = {};
};
};
}