mirror of
https://git.mediani.de/mirrors_public/oddlama_nixos-extra-modules.git
synced 2025-10-10 14:10:38 +02:00
20 lines
317 B
Nix
20 lines
317 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.microvm.nixosModules.host
|
|
|
|
./boot.nix
|
|
./globals.nix
|
|
./guests/default.nix
|
|
./interface-naming.nix
|
|
./nginx.nix
|
|
./node.nix
|
|
./restic.nix
|
|
#./topology-wireguard.nix
|
|
./wireguard.nix
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
inputs.microvm.overlay
|
|
];
|
|
}
|