basic misskey setup

This commit is contained in:
Clara Dautermann 2025-07-19 21:15:47 +02:00
parent b7118475bc
commit 1566fc21d1
Signed by: clara
GPG key ID: 223391B52FAD4463
5 changed files with 114 additions and 40 deletions

View file

@ -0,0 +1,19 @@
{ lib, pkgs, config, ... }: {
deployment = {
targetHost = "192.168.178.80";
targetPort = 22;
targetUser = "root";
};
networking.hostName = "mastodon";
networking.interfaces.wgbr.ipv4.addresses = [
{
address = "10.8.1.6";
prefixLength = 24;
}
];
imports = [
../container_config.nix
../services/mastodon.nix
];
}