9 lines
209 B
Nix
9 lines
209 B
Nix
{ nixpkgs, ...}:
|
|
{
|
|
imports = [ (builtins.fetchGit {
|
|
url = "https://github.com/astro/microvm.nix";
|
|
} + "/nixos-modules/host") ];
|
|
|
|
systemd.network.networks."31-server".matchConfig.Name = [ "vm-*" ];
|
|
}
|