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

21 lines
448 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ lib, ... }: {
2024-04-16 22:17:16 +02:00
imports = [
../../common
../../profiles/kartoffel.nix
../../profiles/headless.nix
../../profiles/lxc.nix
../../services/nginx.nix
../../services/nyastodon.nix
];
networking = {
domain = lib.mkForce "girldick.gay";
hostName = "staging";
nftables.enable = lib.mkForce false;
};
systemd.network.networks."98-eth-default" = {
address = [
"2a0f:be01:0:100::170/128"
];
};
}