1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/seras/configuration.nix

23 lines
511 B
Nix
Raw Normal View History

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
2024-05-09 20:21:49 +02:00
../../services/nginx.nix
../../services/hydra.nix
2024-04-03 10:38:55 +02:00
];
2024-05-10 14:35:05 +02:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2024-04-03 10:38:55 +02:00
networking = {
hostName = "seras";
2024-05-09 20:21:49 +02:00
firewall.allowedTCPPorts = [ 80 443 ];
2024-04-03 10:38:55 +02:00
};
systemd.network.networks."98-eth-default" = {
address = [
"2a0f:be01:0:100::169/128"
];
};
}