2024-04-03 10:38:55 +02:00
|
|
|
{ config, inputs, lib, pkgs, ... }: {
|
|
|
|
imports = [
|
|
|
|
../../common
|
2024-04-29 15:22:48 +02:00
|
|
|
../../profiles/builder.nix
|
2024-04-03 10:38:55 +02:00
|
|
|
../../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"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|