feat(nix-flake): add virtiofsd for linux

This commit is contained in:
Matej Cotman 2026-04-21 12:32:43 +03:00 committed by Dino Korah
parent ccac3a3267
commit 7a477bc91a
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,5 @@
{
lib,
fetchFromGitHub,
installShellFiles,
makeWrapper,
stdenv,
@ -28,6 +27,7 @@
zsync,
OVMF ? null,
OVMFFull ? null,
virtiofsd,
}:
let
runtimePaths = [
@ -55,6 +55,7 @@ let
OVMFFull
usbutils
xdg-user-dirs
virtiofsd
];
# Extract version using builtins.split to avoid regex backtracking on large files.
# builtins.match with .* patterns on multi-kilobyte files can cause stack overflow.