1
0
Fork 0
forked from Bun/nixos-config

Move around secrets and variables and the like

This commit is contained in:
Jimbo 2025-03-02 03:58:14 -05:00
parent a05718f708
commit 8a617299fe
7 changed files with 8 additions and 14 deletions

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
{
options.ips = lib.mkOption {
type = lib.types.attrs;
};
config.ips = rec {
localSpan = "10.1.0";
server = "${localSpan}.2";
pc = "${localSpan}.4";
vm = "${localSpan}.5";
hx = "${localSpan}.70";
};
}