successful vikunja setup

This commit is contained in:
Clara Dautermann 2025-08-09 00:55:15 +02:00
parent 53231651da
commit cbddf4c31e
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 188 additions and 50 deletions

View file

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