You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixfiles/config/hosts/girldick/configuration.nix

25 lines
573 B
Nix

{ config, lib, pkgs, inputs, ... }: {
imports = [
../../common
../../profiles/kartoffel.nix
../../profiles/headless.nix
../../profiles/lxc.nix
../../services/nginx.nix
../../services/nyastodon.nix
];
deployment = {
targetUser = lib.mkForce "emily";
};
networking = {
domain = lib.mkForce "girldick.gay";
hostName = "staging";
nftables.enable = lib.mkForce false;
firewall.allowedTCPPorts = [ 80 443 ];
};
systemd.network.networks."98-eth-default" = {
address = [
"2a0f:be01:0:100::170/128"
];
};
}