Skip to content

Commit a08bfe0

Browse files
authored
Merge pull request #920 from nix-community/update_flake_lock_action
flake.lock: Update
2 parents d32f2d1 + dcd15a3 commit a08bfe0

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/make-disk-image.nix

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@ let
1414
configSupportsZfs = config.boot.supportedFilesystems.zfs or false;
1515
vmTools = pkgs.vmTools.override
1616
{
17-
rootModules = [ "9p" "9pnet_virtio" "virtio_pci" "virtio_blk" ]
17+
rootModules = [
18+
"9p" "9pnet_virtio" # we can drop those in future if we stop supporting 24.11
19+
20+
"virtiofs"
21+
"virtio_pci"
22+
"virtio_blk"
23+
"virtio_balloon"
24+
"virtio_rng"
25+
]
1826
++ (lib.optional configSupportsZfs "zfs")
1927
++ cfg.extraRootModules;
2028
kernel = pkgs.aggregateModules

0 commit comments

Comments
 (0)