-
-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathflake.nix
More file actions
287 lines (263 loc) · 10.3 KB
/
flake.nix
File metadata and controls
287 lines (263 loc) · 10.3 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
{
description = "Contain NixOS in a MicroVM";
nixConfig = {
extra-substituters = [ "https://microvm.cachix.org" ];
extra-trusted-public-keys = [ "microvm.cachix.org-1:oXnBc6hRE3eX5rSYdRyMYXnfzcCxC7yKPTbZXALsqys=" ];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
spectrum = {
url = "git+https://spectrum-os.org/git/spectrum";
flake = false;
};
};
outputs = { self, nixpkgs, spectrum }:
let
forAllSystems = function: nixpkgs.lib.genAttrs systems (system: function system);
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
in {
apps = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
nixosToApp = configFile: {
type = "app";
program = "${(import configFile {
inherit self nixpkgs system;
}).config.microvm.declaredRunner}/bin/microvm-run";
};
in {
vm = nixosToApp ./examples/microvms-host.nix;
qemu-vnc = nixosToApp ./examples/qemu-vnc.nix;
graphics = {
type = "app";
program = toString (pkgs.writeShellScript "run-graphics" ''
set -e
if [ -z "$*" ]; then
echo "Usage: $0 [--tap tap0] <pkgs...>"
exit 1
fi
if [ "$1" = "--tap" ]; then
TAP_INTERFACE="\"$2\""
shift 2
else
TAP_INTERFACE=null
fi
${pkgs.nix}/bin/nix run \
-f ${./examples/graphics.nix} \
config.microvm.declaredRunner \
--arg self 'builtins.getFlake "${self}"' \
--arg system '"${system}"' \
--arg nixpkgs 'builtins.getFlake "${nixpkgs}"' \
--arg packages "\"$*\"" \
--arg tapInterface "$TAP_INTERFACE"
'');
};
# Run this on your host to accept Wayland connections
# on AF_VSOCK.
waypipe-client = {
type = "app";
program = toString (pkgs.writeShellScript "waypipe-client" ''
exec ${pkgs.waypipe}/bin/waypipe --vsock -s 6000 client
'');
};
}
);
packages = forAllSystems (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlay ];
};
inherit (pkgs) lib;
in {
build-microvm = pkgs.callPackage ./pkgs/build-microvm.nix { inherit self; };
doc = pkgs.callPackage ./pkgs/doc.nix { };
microvm = pkgs.callPackage ./pkgs/microvm-command.nix { };
# 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-example
cloud-hypervisor-example
firecracker-example
crosvm-example
kvmtool-example
stratovirt-example
# alioth-example
virtiofsd
];
pathsToLink = [ "/" ];
extraOutputsToInstall = [ "dev" ];
ignoreCollisions = true;
};
} //
# wrap self.nixosConfigurations in executable packages
lib.listToAttrs (
lib.concatMap (configName:
let
config = self.nixosConfigurations.${configName};
packageName = lib.replaceString "${system}-" "" configName;
# Check if this config's guest system matches our current build system
# (accounting for darwin hosts building linux guests)
guestSystem = config.pkgs.stdenv.hostPlatform.system;
buildSystem = lib.replaceString "-darwin" "-linux" system;
in
lib.optional (guestSystem == buildSystem)
{
name = packageName;
value = config.config.microvm.runner.${config.config.microvm.hypervisor};
}
) (builtins.attrNames self.nixosConfigurations)
)
);
# Takes too much memory in `nix flake show`
# checks = forAllSystems (system:
# import ./checks { inherit self nixpkgs system; }
# );
# hydraJobs are checks
hydraJobs = forAllSystems (system:
builtins.mapAttrs (_: check:
(nixpkgs.lib.recursiveUpdate check {
meta.timeout = 12 * 60 * 60;
})
) (import ./checks { inherit self nixpkgs system; })
);
lib = import ./lib { inherit (nixpkgs) lib; };
overlay = final: super: {
cloud-hypervisor-graphics = import "${spectrum}/pkgs/cloud-hypervisor" { inherit final super; };
};
overlays.default = self.overlay;
nixosModules = {
microvm = ./nixos-modules/microvm;
host = ./nixos-modules/host;
# Just the generic microvm options
microvm-options = ./nixos-modules/microvm/options.nix;
};
defaultTemplate = self.templates.microvm;
templates.microvm = {
path = ./flake-template;
description = "Flake with MicroVMs";
};
nixosConfigurations =
let
inherit (nixpkgs) lib;
hypervisorsWith9p = [
"qemu"
# currently broken:
# "crosvm"
];
hypervisorsWithUserNet = [ "qemu" "kvmtool" "vfkit" ];
hypervisorsDarwinOnly = [ "vfkit" ];
# Hypervisors that work on darwin (qemu via HVF, vfkit natively)
hypervisorsOnDarwin = [ "qemu" "vfkit" ];
hypervisorsWithTap = builtins.filter
# vfkit supports networking, but does not support tap
(hv: hv != "vfkit")
self.lib.hypervisorsWithNetwork;
isDarwinOnly = hypervisor: builtins.elem hypervisor hypervisorsDarwinOnly;
isDarwinSystem = system: lib.hasSuffix "-darwin" system;
hypervisorSupportsSystem = hypervisor: system:
if isDarwinSystem system
then builtins.elem hypervisor hypervisorsOnDarwin
else !(isDarwinOnly hypervisor);
makeExample = { system, hypervisor, config ? {} }:
lib.nixosSystem {
system = lib.replaceString "-darwin" "-linux" system;
modules = [
self.nixosModules.microvm
({ lib, ... }: {
system.stateVersion = lib.trivial.release;
networking.hostName = "${hypervisor}-microvm";
services.getty.autologinUser = "root";
nixpkgs.overlays = [ self.overlay ];
microvm = {
inherit hypervisor;
# share the host's /nix/store if the hypervisor supports it
shares =
if builtins.elem hypervisor hypervisorsWith9p then [{
tag = "ro-store";
source = "/nix/store";
mountPoint = "/nix/.ro-store";
proto = "9p";
}]
else if hypervisor == "vfkit" then [{
tag = "ro-store";
source = "/nix/store";
mountPoint = "/nix/.ro-store";
proto = "virtiofs";
}]
else [];
# writableStoreOverlay = "/nix/.rw-store";
# volumes = [ {
# image = "nix-store-overlay.img";
# mountPoint = config.microvm.writableStoreOverlay;
# size = 2048;
# } ];
interfaces = lib.optional (builtins.elem hypervisor hypervisorsWithUserNet) {
type = "user";
id = "qemu";
mac = "02:00:00:01:01:01";
};
forwardPorts = lib.optional (hypervisor == "qemu") {
host.port = 2222;
guest.port = 22;
};
# Allow build on Darwin
vmHostPackages = lib.mkIf (lib.hasSuffix "-darwin" system)
nixpkgs.legacyPackages.${system};
};
networking.firewall.allowedTCPPorts = lib.optional (hypervisor == "qemu") 22;
services.openssh = lib.optionalAttrs (hypervisor == "qemu") {
enable = true;
settings.PermitRootLogin = "yes";
};
})
config
];
};
basicExamples = lib.flatten (
lib.map (system:
lib.map (hypervisor: {
name = "${system}-${hypervisor}-example";
value = makeExample { inherit system hypervisor; };
shouldInclude = hypervisorSupportsSystem hypervisor system;
}) self.lib.hypervisors
) systems
);
tapExamples = lib.flatten (
lib.map (system:
lib.imap1 (idx: hypervisor: {
name = "${system}-${hypervisor}-example-with-tap";
value = makeExample {
inherit system hypervisor;
config = _: {
microvm.interfaces = [ {
type = "tap";
id = "vm-${builtins.substring 0 4 hypervisor}";
mac = "02:00:00:01:01:0${toString idx}";
} ];
networking = {
interfaces.eth0.useDHCP = true;
firewall.allowedTCPPorts = [ 22 ];
};
services.openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
};
};
shouldInclude = builtins.elem hypervisor hypervisorsWithTap
&& hypervisorSupportsSystem hypervisor system;
}) self.lib.hypervisors
) systems
);
included = builtins.filter (ex: ex.shouldInclude) (basicExamples ++ tapExamples);
in
builtins.listToAttrs (builtins.map ({ name, value, ... }: { inherit name value; }) included);
};
}