Move around secrets and variables and the like
This commit is contained in:
parent
a05718f708
commit
8a617299fe
7 changed files with 8 additions and 14 deletions
|
@ -1,6 +1,7 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
imports = [
|
||||
./ips
|
||||
./wireless
|
||||
./wireguard
|
||||
];
|
||||
|
|
14
modules/system/devices/networking/ips/default.nix
Normal file
14
modules/system/devices/networking/ips/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.ips = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
};
|
||||
|
||||
config.ips = rec {
|
||||
localSpan = "10.1.0";
|
||||
server = "10.1.0.2";
|
||||
pc = "10.1.0.4";
|
||||
vm = "10.1.0.5";
|
||||
hx = "10.1.0.70";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue