make mkFlake at root of flake
This commit is contained in:
parent
8a816b5e85
commit
1531a79212
5 changed files with 276 additions and 126 deletions
29
flake.nix
29
flake.nix
|
@ -19,25 +19,26 @@
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
oslib = import ./os/lib.nix { inherit pkgs system nixvirt; };
|
oslib = import ./os/lib.nix { inherit pkgs system nixvirt; };
|
||||||
inherit (oslib) osdb;
|
# inherit (oslib) osdb;
|
||||||
|
|
||||||
zig-env = zig2nix.outputs.zig-env.${system} { zig = zig2nix.outputs.packages.${system}.zig.master.bin; };
|
zig-env = zig2nix.outputs.zig-env.${system} { zig = zig2nix.outputs.packages.${system}.zig.master.bin; };
|
||||||
|
|
||||||
hello-vm = oslib.mkVM {
|
# hello-vm = oslib.mkVM {
|
||||||
name = "hello";
|
# name = "hello";
|
||||||
uuid = "c0c49ae7-6fe4-4c39-a8ae-c80c6b689344";
|
# uuid = "c0c49ae7-6fe4-4c39-a8ae-c80c6b689344";
|
||||||
arch = "x86_64";
|
# arch = "x86_64";
|
||||||
isos.beforeInstall = [
|
# isos.beforeInstall = [
|
||||||
{ index = 1; file = "${osdb.windows."6.1.7601".professional.x86_64.installer}/out.iso"; }
|
# { index = 1; file = "${osdb.windows."6.1.7601".professional.x86_64.installer}/out.iso"; }
|
||||||
{ index = 2; file = "${osdb.windows."6.1.7601".professional.x86_64.unattend}/out.iso"; }
|
# { index = 2; file = "${osdb.windows."6.1.7601".professional.x86_64.unattend}/out.iso"; }
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
in {
|
in {
|
||||||
|
inherit (oslib) mkFlake;
|
||||||
apps = {
|
apps = {
|
||||||
hello-start-vm = flake-utils.lib.mkApp {
|
# hello-start-vm = flake-utils.lib.mkApp {
|
||||||
drv = hello-vm.start-vm;
|
# drv = hello-vm.start-vm;
|
||||||
exePath = "";
|
# exePath = "";
|
||||||
};
|
# };
|
||||||
default = zig-env.app-no-root [] "zig build run -- \"$@\"";
|
default = zig-env.app-no-root [] "zig build run -- \"$@\"";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
89
os/lib.nix
89
os/lib.nix
|
@ -13,15 +13,12 @@
|
||||||
format.type = "qcow2";
|
format.type = "qcow2";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
|
||||||
inherit osdb;
|
|
||||||
|
|
||||||
mkVM = {
|
mkVM = {
|
||||||
name,
|
name,
|
||||||
uuid,
|
uuid,
|
||||||
arch,
|
arch,
|
||||||
isos,
|
isos,
|
||||||
}: let
|
}: rec {
|
||||||
base = {
|
base = {
|
||||||
inherit name uuid arch;
|
inherit name uuid arch;
|
||||||
volume.index = 0;
|
volume.index = 0;
|
||||||
|
@ -64,70 +61,24 @@ in {
|
||||||
dev = "sd" + idxToDev x.index;
|
dev = "sd" + idxToDev x.index;
|
||||||
}) (afterBoot);
|
}) (afterBoot);
|
||||||
}));
|
}));
|
||||||
in derivation {
|
|
||||||
inherit name system;
|
|
||||||
builder = "${pkgs.fish}/bin/fish";
|
|
||||||
args = [ ./lib/mkvm.fish ];
|
|
||||||
|
|
||||||
start-vm = pkgs.writeScript "start-vm"
|
|
||||||
''
|
|
||||||
#!/usr/bin/env fish
|
|
||||||
|
|
||||||
function quickExit
|
|
||||||
virsh destroy ${name}
|
|
||||||
exit
|
|
||||||
end
|
|
||||||
|
|
||||||
function interrupt_handler --on-signal INT
|
|
||||||
echo Got INT signal, cleaning up and exiting...
|
|
||||||
quickExit
|
|
||||||
end
|
|
||||||
|
|
||||||
echo "moving to beforeInstall stage"
|
|
||||||
# rm /var/lib/libvirt/images/${name}.qcow2
|
|
||||||
# virsh vol-delete --pool default '${name}.qcow2'
|
|
||||||
virsh vol-create default ${volume}
|
|
||||||
virsh define ${beforeInstallDrv}
|
|
||||||
virsh start '${name}'
|
|
||||||
|
|
||||||
fish -c 'virsh console ${name} 2>/dev/null | while read -l out; if test $out = "$(string unescape ready\r\n)"; sleep 60; exit; end; end'
|
|
||||||
|
|
||||||
# virsh console '${name}' 2>/dev/null | while read -l out
|
|
||||||
# # echo out: $out (string unescape \r)
|
|
||||||
# if test $out = "$(string unescape ready\r\n)"
|
|
||||||
# echo "waiting 60 seconds"
|
|
||||||
# sleep 60
|
|
||||||
# virsh shutdown '${name}'
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
|
|
||||||
echo "moving to afterInstall stage"
|
|
||||||
virsh define ${afterInstallDrv}
|
|
||||||
virsh snapshot-create-as '${name}' '${builtins.baseNameOf afterInstallDrv}'
|
|
||||||
|
|
||||||
virsh console '${name}' 2>/dev/null | while read -l out
|
|
||||||
if test $out = "$(string unescape ready\r\n)"
|
|
||||||
echo "waiting 60 seconds"
|
|
||||||
sleep 60
|
|
||||||
virsh shutdown '${name}'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
echo "moving to beforeBoot stage"
|
|
||||||
virsh define ${beforeBootDrv}
|
|
||||||
virsh snapshot-create-as '${name}' '${builtins.baseNameOf beforeBootDrv}'
|
|
||||||
|
|
||||||
virsh console '${name}' 2>/dev/null | while read -l out
|
|
||||||
if test $out = "$(string unescape ready\r\n)"
|
|
||||||
echo "waiting 60 seconds"
|
|
||||||
sleep 60
|
|
||||||
virsh shutdown '${name}'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
echo "moving to afterBoot stage"
|
|
||||||
virsh define ${afterBootDrv}
|
|
||||||
virsh snapshot-create-as '${name}' '${builtins.baseNameOf afterBootDrv}'
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
inherit osdb;
|
||||||
|
|
||||||
|
mkFlake = config: let
|
||||||
|
vm = mkVM {
|
||||||
|
inherit (config) name uuid;
|
||||||
|
beforeInstall = [
|
||||||
|
{ index = 1; file = "${osdb.${config.os.name}.${config.os.version}.${config.os.edition}.${config.os.arch}.installer}/out.iso"; }
|
||||||
|
{ index = 2; file = "${osdb.${config.os.name}.${config.os.version}.${config.os.edition}.${config.os.arch}.unattend}/out.iso"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
packages.volume = vm.volume;
|
||||||
|
packages.beforeInstall = vm.beforeInstallDrv;
|
||||||
|
packages.afterInstall = vm.afterInstallDrv;
|
||||||
|
packages.beforeBoot = vm.beforeBootDrv;
|
||||||
|
packages.afterBoot = vm.afterBootDrv;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
199
server/flakes/windows/test/flake.lock
generated
Normal file
199
server/flakes/windows/test/flake.lock
generated
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1710146030,
|
||||||
|
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils_2": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems_2"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1710146030,
|
||||||
|
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1719075281,
|
||||||
|
"narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs-ovmf": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1708984720,
|
||||||
|
"narHash": "sha256-gJctErLbXx4QZBBbGp78PxtOOzsDaQ+yw1ylNQBuSUY=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "13aff9b34cc32e59d35c62ac9356e4a41198a538",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1708979614,
|
||||||
|
"narHash": "sha256-FWLWmYojIg6TeqxSnHkKpHu5SGnFP5um1uUjH+wRV6g=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "b7ee09cf5614b02d289cd86fcfa6f24d4e078c2a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-23.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_3": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1718622336,
|
||||||
|
"narHash": "sha256-lywfxWRBn+lwdKaBy5x5uTkbCcEPUonCn6bK8OQPsw4=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "d0fc4188d246ab953653f00e9ce0cf51d10d5eda",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixvirt": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs_2",
|
||||||
|
"nixpkgs-ovmf": "nixpkgs-ovmf"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1718920754,
|
||||||
|
"narHash": "sha256-y6OX0hGvqijTQRZ7Jiyt+WCWi/+oQdq6xwjhUtOk494=",
|
||||||
|
"owner": "Nomkid",
|
||||||
|
"repo": "NixVirt",
|
||||||
|
"rev": "bf98e0864c15138361d9d9f2b5aee3d8889a0cd4",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "Nomkid",
|
||||||
|
"repo": "NixVirt",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"oslib": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nixvirt": "nixvirt",
|
||||||
|
"zig2nix": "zig2nix"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1719255289,
|
||||||
|
"narHash": "sha256-nHOAk/Dn6SHt7QW3tnQjm7ZE3kqO6w1n2Ht5bL9shoc=",
|
||||||
|
"ref": "refs/heads/master",
|
||||||
|
"rev": "8a816b5e852e621db6dba62b46d6f9dd25760e09",
|
||||||
|
"revCount": 1,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.jeevio.xyz/jeeves/oslib"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.jeevio.xyz/jeeves/oslib"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"oslib": "oslib"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"zig2nix": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils_2",
|
||||||
|
"nixpkgs": "nixpkgs_3"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1719192015,
|
||||||
|
"narHash": "sha256-6hrQt6y+P0qV/VkJQ4n4bZSaZLJNYXrKecS6B1xb9Wk=",
|
||||||
|
"owner": "Cloudef",
|
||||||
|
"repo": "zig2nix",
|
||||||
|
"rev": "048bebf58984486cf45c5e4119f4b149f27d7f1f",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "Cloudef",
|
||||||
|
"repo": "zig2nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
20
server/flakes/windows/test/flake.nix
Normal file
20
server/flakes/windows/test/flake.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
description = "windows test vm";
|
||||||
|
inputs.oslib.url = "git+https://git.jeevio.xyz/jeeves/oslib";
|
||||||
|
outputs = { self, oslib }: oslib.mkFlake {
|
||||||
|
name = "wintest";
|
||||||
|
uuid = "b691936e-1772-4b11-9dab-43b2a794ef90";
|
||||||
|
os.name = "windows";
|
||||||
|
os.version = "6.1.7601"; # 7 - Service Pack 1
|
||||||
|
os.edition = "professional";
|
||||||
|
os.arch = "x86_64";
|
||||||
|
# preinstalledSoftware = with oslib.software.windows [
|
||||||
|
# firefox
|
||||||
|
# acrobat
|
||||||
|
# msoffice_2007
|
||||||
|
# ];
|
||||||
|
# modules = with oslib.modules.windows [
|
||||||
|
# scatterUserFiles { desktop = true; documents = true; }
|
||||||
|
# ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,61 +1,40 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
const process = std.process;
|
||||||
|
const heap = std.heap;
|
||||||
|
const mem = std.mem;
|
||||||
const fs = std.fs;
|
const fs = std.fs;
|
||||||
const libvirt = @import("libvirt.zig");
|
const libvirt = @import("libvirt.zig");
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
var gpa = heap.GeneralPurposeAllocator(.{}){};
|
||||||
defer _ = gpa.deinit();
|
defer _ = gpa.deinit();
|
||||||
const allocator = gpa.allocator();
|
const allocator = gpa.allocator();
|
||||||
|
|
||||||
// std.debug.print("{any}\n", .{libvirt.c.virConnectAuthPtr});
|
|
||||||
|
|
||||||
const connection = try libvirt.Connection.connect("qemu+ssh://jeeves@evil.lan/system", allocator);
|
const connection = try libvirt.Connection.connect("qemu+ssh://jeeves@evil.lan/system", allocator);
|
||||||
defer connection.close();
|
defer connection.close();
|
||||||
|
|
||||||
const uri = try connection.getURI();
|
var nix = process.Child.init(&[_][]const u8{ "nix", "build", ".#volume" }, allocator);
|
||||||
defer connection.freeURI(uri);
|
nix.cwd_dir = try fs.cwd().openDir("flakes/windows/test", .{});
|
||||||
std.debug.print("uri: {s}\n", .{uri});
|
_ = try nix.spawnAndWait();
|
||||||
|
|
||||||
const num_active = try connection.numOfDomains();
|
// const uri = try connection.getURI();
|
||||||
const num_inactive = try connection.numOfDefinedDomains();
|
// defer connection.freeURI(uri);
|
||||||
std.debug.print("active: {d}, inactive: {d}\n", .{ num_active, num_inactive });
|
// std.debug.print("uri: {s}\n", .{uri});
|
||||||
|
|
||||||
var domain_iter = connection.iterateDomains(&[_]libvirt.Domain.Flags{
|
// const num_active = try connection.numOfDomains();
|
||||||
libvirt.Domain.Flags.ListDomainsActive,
|
// const num_inactive = try connection.numOfDefinedDomains();
|
||||||
libvirt.Domain.Flags.ListDomainsInactive,
|
// std.debug.print("active: {d}, inactive: {d}\n", .{ num_active, num_inactive });
|
||||||
});
|
|
||||||
defer domain_iter.deinit();
|
|
||||||
|
|
||||||
while (domain_iter.next()) |domain| {
|
// var domain_iter = connection.iterateDomains(&[_]libvirt.Domain.Flags{
|
||||||
const active = domain.isActive();
|
// libvirt.Domain.Flags.ListDomainsActive,
|
||||||
const name = domain.getName();
|
// libvirt.Domain.Flags.ListDomainsInactive,
|
||||||
std.debug.print("name: {s}, active: {any}\n", .{ name, active });
|
// });
|
||||||
}
|
// defer domain_iter.deinit();
|
||||||
|
|
||||||
// const connection = libvirt.c.virConnectOpenAuth("qemu+ssh://jeeves@evil.lan/system", libvirt.c.virConnectAuthPtrDefault, 0);
|
// while (domain_iter.next()) |domain| {
|
||||||
// if (connection) |conn| {
|
// const active = domain.isActive();
|
||||||
// const conn_uri = libvirt.c.virConnectGetURI(conn);
|
// const name = domain.getName();
|
||||||
// defer std.c.free(@ptrCast(conn_uri));
|
|
||||||
// if (conn_uri) |uri| {
|
|
||||||
// std.debug.print("conn uri: {s}\n", .{uri});
|
|
||||||
// }
|
|
||||||
|
|
||||||
// const num_active_domains = libvirt.c.virConnectNumOfDomains(conn);
|
|
||||||
// const num_inactive_domains = libvirt.c.virConnectNumOfDefinedDomains(conn);
|
|
||||||
|
|
||||||
// std.debug.print("there are {d} active and {d} inactive domains\n", .{ num_active_domains, num_inactive_domains });
|
|
||||||
|
|
||||||
// var domain_list: [*]libvirt.c.virDomainPtr = undefined;
|
|
||||||
// const flags = libvirt.c.VIR_CONNECT_LIST_DOMAINS_ACTIVE | libvirt.c.VIR_CONNECT_LIST_DOMAINS_INACTIVE;
|
|
||||||
// const num_domains = libvirt.c.virConnectListAllDomains(conn, @ptrCast(&domain_list), flags);
|
|
||||||
|
|
||||||
// var i: usize = 0;
|
|
||||||
// while (i < num_domains) : (i += 1) {
|
|
||||||
// const active = libvirt.c.virDomainIsActive(domain_list[i]);
|
|
||||||
// const name = libvirt.c.virDomainGetName(domain_list[i]);
|
|
||||||
// std.debug.print("name: {s}, active: {any}\n", .{ name, active });
|
// std.debug.print("name: {s}, active: {any}\n", .{ name, active });
|
||||||
// _ = libvirt.c.virDomainFree(domain_list[i]);
|
|
||||||
// }
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// var flake = try fs.cwd().createFile("flake.nix", .{});
|
// var flake = try fs.cwd().createFile("flake.nix", .{});
|
||||||
|
|
Loading…
Add table
Reference in a new issue