nix/nixos/containers/default.nix

29 lines
832 B
Nix
Raw Normal View History

2024-03-26 01:00:46 +01:00
{ stateVersion, hostname, username, ... }: {
2024-03-21 12:27:53 +01:00
imports = [
2024-03-21 10:51:41 +01:00
./${hostname}
../users/${username}
../common/modules/nixos.nix
2024-03-27 02:10:20 +01:00
../common/modules/networking.nix
2024-03-25 03:53:39 +01:00
# Services
2024-03-27 02:10:20 +01:00
../common/services/promtail.nix
../common/services/telegraf.nix
../common/services/tailscale.nix
../common/services/openssh.nix
2024-03-21 10:51:41 +01:00
];
2024-03-25 03:53:39 +01:00
# Generic Tailscale configs are in /nixos/common/services/tailscale.nix
# Set up the secrets file:
2024-03-25 04:41:07 +01:00
sops.secrets."tailscale_key" = {
owner = "root";
sopsFile = ../../secrets/containers/${hostname}.yaml;
restartUnits = [
"tailscaled.service"
"tailscaled-autoconnect.service"
];
};
2024-03-26 01:00:46 +01:00
boot.isContainer = true;
2024-03-25 04:41:07 +01:00
services.tailscale.authKeyFile = "/run/secrets/tailscale_key";
2024-03-21 12:27:53 +01:00
networking.hostName = "${hostname}";
2024-03-26 01:00:46 +01:00
system.stateVersion = stateVersion;
2024-03-21 10:51:41 +01:00
}