dotfiles/nix/secret-lib/network.nix
Magic_RB 3ccb236c4b
Remove all semi-secret things
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:26:06 +02:00

23 lines
373 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 str;
default = {};
};
};
}