forked from Nerox9/microvm.nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
173 lines (161 loc) · 6.6 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
description = "Contain NixOS in a MicroVM";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
nixConfig.extra-substituters = [ "https://microvm.cachix.org" ];
nixConfig.extra-trusted-public-keys = [ "microvm.cachix.org-1:oXnBc6hRE3eX5rSYdRyMYXnfzcCxC7yKPTbZXALsqys=" ];
outputs = { self, nixpkgs, flake-utils }:
let
systems = [
"x86_64-linux"
"aarch64-linux"
];
in
flake-utils.lib.eachSystem systems (system: {
apps = {
vm = {
type = "app";
program =
let
inherit (import ./examples/microvms-host.nix {
inherit self nixpkgs system;
}) config;
inherit (config.microvm) hypervisor;
in
"${config.microvm.runner.${hypervisor}}/bin/microvm-run";
};
};
packages =
let
pkgs = nixpkgs.legacyPackages.${system};
in {
build-microvm = pkgs.callPackage ./pkgs/build-microvm.nix { inherit self; };
doc = pkgs.callPackage ./pkgs/doc.nix {};
mktuntap = pkgs.callPackage ./pkgs/mktuntap.nix {};
microvm-kernel = pkgs.linuxPackages_latest.callPackage ./pkgs/microvm-kernel.nix {};
microvm = import ./pkgs/microvm-command.nix {
inherit pkgs;
};
# all compilation-heavy packages that shall be prebuilt for a binary cache
prebuilt = pkgs.buildEnv {
name = "prebuilt";
paths = with self.packages.${system}; with pkgs; [
qemu_kvm cloud-hypervisor
firectl firecracker
crosvm kvmtool
microvm-kernel virtiofsd
];
pathsToLink = [ "/" ];
extraOutputsToInstall = [ "dev" ];
};
} //
# wrap self.nixosConfigurations in executable packages
builtins.foldl' (result: systemName:
let
nixos = self.nixosConfigurations.${systemName};
name = builtins.replaceStrings [ "${system}-" ] [ "" ] systemName;
inherit (nixos.config.microvm) hypervisor;
in
if nixos.pkgs.system == system
then result // {
"${name}" = nixos.config.microvm.runner.${hypervisor};
}
else result
) {} (builtins.attrNames self.nixosConfigurations);
checks = import ./checks { inherit self nixpkgs system; };
}) // {
lib = import ./lib { nixpkgs-lib = nixpkgs.lib; };
overlay = final: prev: {
microvm-kernel = prev.linuxPackages_latest.callPackage ./pkgs/microvm-kernel.nix {};
};
nixosModules = {
microvm = import ./nixos-modules/microvm self;
host = import ./nixos-modules/host.nix;
};
defaultTemplate = self.templates.microvm;
templates.microvm = {
path = ./flake-template;
description = "Flake with MicroVMs";
};
nixosConfigurations =
let
hypervisorsWith9p = [
"qemu"
# currently broken:
# "crosvm"
];
hypervisorsWithUserNet = [ "qemu" "kvmtool" ];
makeExample = { system, hypervisor, config ? {} }:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [
self.nixosModules.microvm
({ config, lib, ... }: {
system.stateVersion = config.system.nixos.version;
networking.hostName = "${hypervisor}-microvm";
users.users.root.password = "";
services.getty.helpLine = ''
Log in as "root" with an empty password.
'';
microvm.hypervisor = hypervisor;
# share the host's /nix/store if the hypervisor can do 9p
microvm.shares = lib.optional (builtins.elem hypervisor hypervisorsWith9p) {
tag = "ro-store";
source = "/nix/store";
mountPoint = "/nix/.ro-store";
};
microvm.writableStoreOverlay = "/nix/.rw-store";
microvm.volumes = [ {
image = "nix-store-overlay.img";
mountPoint = config.microvm.writableStoreOverlay;
size = 2048;
} ];
microvm.interfaces = lib.optional (builtins.elem hypervisor hypervisorsWithUserNet) {
type = "user";
id = "qemu";
mac = "02:00:00:01:01:01";
};
microvm.forwardPorts = lib.optional (hypervisor == "qemu") {
host.port = 2222;
guest.port = 22;
};
networking.firewall.allowedTCPPorts = lib.optional (hypervisor == "qemu") 22;
services.openssh = lib.optionalAttrs (hypervisor == "qemu") {
enable = true;
permitRootLogin = "yes";
};
})
config
];
};
in
(builtins.foldl' (results: system:
builtins.foldl' ({ result, n }: hypervisor: {
result = result // {
"${system}-${hypervisor}-example" = makeExample {
inherit system hypervisor;
};
} //
nixpkgs.lib.optionalAttrs (builtins.elem hypervisor self.lib.hypervisorsWithNetwork) {
"${system}-${hypervisor}-example-with-tap" = makeExample {
inherit system hypervisor;
config = {
microvm.interfaces = [ {
type = "tap";
id = "vm-${builtins.substring 0 4 hypervisor}";
mac = "02:00:00:01:01:0${toString n}";
} ];
networking.interfaces.eth0.useDHCP = true;
networking.firewall.allowedTCPPorts = [ 22 ];
services.openssh = {
enable = true;
permitRootLogin = "yes";
};
};
};
};
n = n + 1;
}) results self.lib.hypervisors
) { result = {}; n = 1; } systems).result;
};
}