nixos/systems/restic-server/default.nix

11 lines
255 B
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom, hostname }: { pkgs, ... }:
2022-02-28 22:17:31 +01:00
{
imports = [
2022-11-08 21:26:24 +01:00
(import "${custom.inputs.self}/systems/raspi4" {
2022-02-28 22:17:31 +01:00
ip = "10.7.89.30";
2022-11-04 19:35:57 +01:00
inherit custom hostname;
2022-02-28 22:17:31 +01:00
})
2022-11-04 19:35:57 +01:00
(import "${custom.inputs.self}/modules/restic-server" { inherit custom; })
2022-02-28 22:17:31 +01:00
];
}