mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 23:34:39 +02:00
18 lines
253 B
Nix
18 lines
253 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
# ./nginx.nix
|
|
./gitea.nix
|
|
./nextcloud.nix
|
|
./ntfy.nix
|
|
./octoprint.nix
|
|
./vaultwarden.nix
|
|
];
|
|
services.teamspeak3 = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
}
|