nixos/systems/git/default.nix

18 lines
453 B
Nix
Raw Normal View History

2022-02-28 22:05:31 +01:00
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "git";
ip = "10.7.89.109";
inherit inputs;
})
(import "${inputs.self}/modules/restic-server-client" {
time = "03:00"; inherit config custom inputs pkgs;
})
2022-05-18 21:29:59 +02:00
(import "${inputs.self}/modules/nginx-acme" {
2022-05-18 21:57:46 +02:00
domain = "git.2li.ch"; inherit inputs;
2022-05-18 21:29:59 +02:00
})
2022-02-28 22:05:31 +01:00
"${inputs.self}/modules/docker"
];
}