Added old pi files

This commit is contained in:
2025-10-02 14:24:48 +03:00
parent 5164b5cc0a
commit b11164a864
10 changed files with 597 additions and 0 deletions

12
old-pi-nixos/radicale.nix Normal file
View File

@@ -0,0 +1,12 @@
{config, lib, pkgs, modulesPath, ...}:
{
services.radicale = {
enable = true;
settings.server.hosts = [ "192.168.0.101:5232" ];
settings.auth.type = "htpasswd";
#settings.auth.htpasswd_filename = "/home/boxuser/radicale/config/users";
settings.auth.htpasswd_encryption = "plain";
#settings.storage.filesystem_folder = "/home/boxuser/radicale/data/collections";
};
}