chore: nf-fmt-nix

This commit is contained in:
arcnmx 2024-05-13 15:13:58 -07:00
parent 7486517713
commit 9903866044
160 changed files with 4570 additions and 3019 deletions

View file

@ -1,24 +1,25 @@
{lib, ...}: let
inherit (lib.strings) concatStringsSep;
dot = concatStringsSep ".";
cutie = dot [ "cutie" "moe" ];
netname = { config, ... }: {
domain = dot [ config.name cutie ];
cutie = dot ["cutie" "moe"];
netname = {config, ...}: {
domain = dot [config.name cutie];
};
in {
type = "Linux";
access.domain = dot [ "gensokyo" cutie ];
access.domain = dot ["gensokyo" cutie];
network.networks = {
local = {
imports = [ netname ];
imports = [netname];
macAddress = let
#eth = "18:c0:4d:08:87:bd";
eth25 = "18:c0:4d:08:87:bc";
in eth25;
in
eth25;
address4 = "10.1.1.32";
};
tail = {
imports = [ netname ];
imports = [netname];
address4 = "100.104.155.122";
address6 = "fd7a:115c:a1e0:ab12:4843:cd96:6268:9b7a";
};