forked from emily/nixfiles
19 lines
408 B
Nix
19 lines
408 B
Nix
{ config, inputs, lib, pkgs, ... }: {
|
|
imports = [
|
|
../../common
|
|
../../profiles/builder.nix
|
|
../../profiles/headless.nix
|
|
../../profiles/kartoffel.nix
|
|
../../profiles/lxc.nix
|
|
];
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
|
|
networking = {
|
|
hostName = "seras";
|
|
};
|
|
systemd.network.networks."98-eth-default" = {
|
|
address = [
|
|
"2a0f:be01:0:100::169/128"
|
|
];
|
|
};
|
|
}
|