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

28 lines
644 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
../../services/nginx.nix
./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 = [
"2a0f:be01:0:100::1337/128"
2024-01-17 19:34:13 +01:00
"2a0f:be01:0:100::1338/128"
2024-01-17 14:34:33 +01:00
];
};
2024-01-17 15:49:17 +01:00
2024-01-18 16:03:31 +01:00
security.acme.certs = {
"fentanyl.trade" = { extraDomainNames = [ "frotti.ng" "watch.kyouma.net" ]; };
"crime.kyouma.net" = {};
};
2024-01-17 15:49:17 +01:00
services.jellyfin.enable = true;
2024-01-17 19:34:13 +01:00
services.sonarr.enable = true;
services.radarr.enable = true;
services.prowlarr.enable = true;
2024-01-17 14:34:33 +01:00
}