nixfiles/config/hosts/crime/configuration.nix

22 lines
517 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ ... }: {
2024-01-17 14:34:33 +01:00
imports = [
../../common
2024-02-05 22:22:40 +01:00
../../profiles/headless.nix
../../profiles/kartoffel.nix
../../profiles/lxc.nix
2024-11-12 18:03:31 +01:00
../../services/arrs
../../services/jellyfin.nix
2024-02-05 22:22:40 +01:00
../../services/nginx.nix
2024-01-17 14:34:33 +01:00
];
2024-11-04 21:19:57 +01:00
networking.hostName = "crime";
2024-01-17 14:34:33 +01:00
systemd.network.networks."98-eth-default" = {
address = [
2024-11-12 18:03:31 +01:00
"2a0f:be01:0:100::b00b:a/128"
2024-01-17 14:34:33 +01:00
];
};
2024-01-17 15:49:17 +01:00
2024-11-12 18:03:31 +01:00
security.acme.defaults.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
2024-01-18 16:03:31 +01:00
2024-11-12 18:03:31 +01:00
kyouma.nginx.defaultForbidden = "fentanyl.trade";
2024-01-17 14:34:33 +01:00
}