nixos/systems/nextcloud/default.nix

22 lines
386 B
Nix
Raw Normal View History

2023-05-29 16:21:23 +02:00
{ hostname }: { inputs, pkgs, ... }:
2022-02-28 22:10:19 +01:00
{
imports = [
2023-05-29 16:21:23 +02:00
(import "${inputs.self}/systems/raspi4" {
2022-02-28 22:10:19 +01:00
ip = "10.7.89.103";
2023-05-29 16:21:23 +02:00
inherit hostname;
2022-02-28 22:10:19 +01:00
})
];
2022-05-18 21:33:06 +02:00
2023-06-05 15:31:45 +02:00
services = {
2023-06-05 15:46:01 +02:00
az-nextcloud = {
enable = true;
domain = "nextcloud.2li.ch";
2022-05-18 21:33:06 +02:00
};
az-restic-client-server-mysql = {
enable = true;
path = "/home/andreas";
time = "01:30";
};
2022-05-19 08:05:22 +02:00
};
}