nixos/systems/restic-server/default.nix

12 lines
243 B
Nix
Raw Normal View History

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