nixos/systems/restic-server/default.nix

13 lines
218 B
Nix
Raw Normal View History

2023-05-29 16:21:23 +02:00
{ hostname }: { inputs, pkgs, ... }:
2022-02-28 22:17:31 +01:00
{
imports = [
2023-05-29 16:21:23 +02:00
(import "${inputs.self}/systems/raspi4" {
2022-02-28 22:17:31 +01:00
ip = "10.7.89.30";
2023-05-29 16:21:23 +02:00
inherit hostname;
2022-02-28 22:17:31 +01:00
})
];
2023-06-06 22:30:02 +02:00
services = {
az-restic-server.enable = true;
};
2022-02-28 22:17:31 +01:00
}