Move variables to more convenient folder
This commit is contained in:
parent
87a53e364f
commit
9c03712908
30 changed files with 159 additions and 45 deletions
15
modules/extras/variables/ips/default.nix
Normal file
15
modules/extras/variables/ips/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ lib, config, ... }:
|
||||
{
|
||||
options.ips = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
default = {};
|
||||
};
|
||||
|
||||
config.ips = rec {
|
||||
localSpan = "10.1.0";
|
||||
server = "${localSpan}.2";
|
||||
pc = "${localSpan}.4";
|
||||
vm = "${localSpan}.5";
|
||||
hx = "${localSpan}.70";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue