mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
refactor(dnsmasq): system host info
This commit is contained in:
parent
86ac38cf2c
commit
6c88d99ae6
30 changed files with 841 additions and 288 deletions
26
systems/shanghai/default.nix
Normal file
26
systems/shanghai/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.strings) concatStringsSep;
|
||||
dot = concatStringsSep ".";
|
||||
cutie = dot [ "cutie" "moe" ];
|
||||
netname = { config, system, ... }: {
|
||||
domain = dot [ config.name system.access.domain ];
|
||||
};
|
||||
in {
|
||||
type = "Linux";
|
||||
access.domain = dot [ "gensokyo" cutie ];
|
||||
network.networks = {
|
||||
local = {
|
||||
imports = [ netname ];
|
||||
macAddress = let
|
||||
#eth = "18:c0:4d:08:87:bd";
|
||||
eth25 = "18:c0:4d:08:87:bc";
|
||||
in eth25;
|
||||
address4 = "10.1.1.32";
|
||||
};
|
||||
tail = {
|
||||
imports = [ netname ];
|
||||
address4 = "100.104.155.122";
|
||||
address6 = "fd7a:115c:a1e0:ab12:4843:cd96:6268:9b7a";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue