nixos/systems/restic-server/default.nix

11 lines
220 B
Nix
Raw Normal View History

2022-09-06 23:03:29 +02:00
{ custom, hostname, inputs, pkgs, ... }:
2022-02-28 22:17:31 +01:00
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.30";
2022-09-06 23:03:29 +02:00
inherit hostname inputs;
2022-02-28 22:17:31 +01:00
})
"${inputs.self}/modules/restic-server"
];
}