nixos/systems/nixos-management/default.nix

15 lines
329 B
Nix
Raw Normal View History

2022-02-28 20:50:25 +01:00
{ 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;
})
];
}