nixos/systems/nixos-management/default.nix
2022-02-28 20:50:25 +01:00

15 lines
329 B
Nix

{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "nixos-management";
ip = "10.7.89.150";
inherit inputs;
})
(import "${inputs.self}/modules/restic-server-client" {
time = "21:30"; inherit config custom inputs pkgs;
})
];
}