nixos/systems/restic-server/default.nix

11 lines
259 B
Nix

{ custom, hostname }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.30";
inherit custom hostname;
})
(import "${custom.inputs.self}/modules/restic-server" { inherit custom; })
];
}