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