nixos/systems/restic-server/default.nix

11 lines
205 B
Nix

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