14 lines
422 B
Nix
14 lines
422 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.services.mycelium.ips = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
};
|
|
|
|
config.services.mycelium.ips = {
|
|
tower = "577:84d1:b682:9ac3:b987:b78e:33d9:2060";
|
|
jupiter = "5ce:969c:40d1:9575:f5e:591d:c377:a20b";
|
|
midas = "538:e163:87ba:f847:3646:18b6:6b01:d8f8";
|
|
kitty = "53f:dc2d:80c9:3ca2:4b15:ef4d:38a0:c868";
|
|
prophet = "42f:2737:2aed:4dee:cbe4:3c73:1918:ad9b";
|
|
};
|
|
}
|