forked from astro/microvm.nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
242 lines (225 loc) · 8.94 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
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
{
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";
flake-utils.url = "github:numtide/flake-utils";
spectrum = {
url = "git+https://spectrum-os.org/git/spectrum";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, spectrum }:
let
systems = [
"x86_64-linux"
"aarch64-linux"
];
overrideWaypipe = pkgs:
pkgs.waypipe.overrideAttrs (attrs: {
version = "unstable-2023-10-02";
src = pkgs.fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mstoeckl";
repo = "waypipe";
rev = "ca4809435e781dfc6bd3006fde605860c8dcf179";
hash = "sha256-tSLPlf7fVq8vwbr7fHotqM/sBSXYMDM1V5yth5bhi38=";
};
});
in
flake-utils.lib.eachSystem systems (system: {
apps =
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
RUNNER=$(${pkgs.nix}/bin/nix build \
-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" \
--no-link --print-out-paths)
exec $RUNNER/bin/microvm-run
'');
};
# Run this on your host to accept Wayland connections
# on AF_VSOCK.
waypipe-client = {
type = "app";
program = toString (pkgs.writeShellScript "waypipe-client" ''
exec ${self.packages.${system}.waypipe}/bin/waypipe --vsock -s 6000 client
'');
};
};
packages =
let
pkgs = nixpkgs.legacyPackages.${system};
in {
build-microvm = pkgs.callPackage ./pkgs/build-microvm.nix { inherit self; };
doc = pkgs.callPackage ./pkgs/doc.nix { inherit nixpkgs; };
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-example
cloud-hypervisor-example
firecracker-example
crosvm-example
kvmtool-example
stratovirt-example
virtiofsd
];
pathsToLink = [ "/" ];
extraOutputsToInstall = [ "dev" ];
ignoreCollisions = true;
};
waypipe = overrideWaypipe pkgs;
} //
# 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);
# Takes too much memory in `nix flake show`
# checks = import ./checks { inherit self nixpkgs system; };
# hydraJobs are checks
hydraJobs = builtins.mapAttrs (_: check:
(nixpkgs.lib.recursiveUpdate check {
meta.timeout = 12 * 60 * 60;
})
) (import ./checks { inherit self nixpkgs system; });
}) // {
lib = import ./lib { nixpkgs-lib = nixpkgs.lib; };
overlay = final: prev: {
cloud-hypervisor-graphics = prev.callPackage (spectrum + "/pkgs/cloud-hypervisor") {};
waypipe = overrideWaypipe prev;
};
nixosModules = {
microvm = import ./nixos-modules/microvm;
host = import ./nixos-modules/host;
};
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;
settings.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 = { lib, ...}: {
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;
settings.PermitRootLogin = "yes";
};
};
};
};
n = n + 1;
}) results self.lib.hypervisors
) { result = {}; n = 1; } systems).result;
};
}