nixfiles/config/hosts/girldick/configuration.nix

20 lines
448 B
Nix

{ lib, ... }: {
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"
];
};
}