demo: add needed fsType

See https://github.com/NixOS/nixpkgs/pull/444829
This commit is contained in:
ibizaman 2026-05-10 18:14:35 +02:00
parent 425cb509db
commit 36cb0390c2

View file

@ -24,7 +24,10 @@
# This module makes the assertions happy and the build succeed.
# This is of course wrong and will not work on any real system.
filesystemModule = {
fileSystems."/".device = "/dev/null";
fileSystems."/" = {
device = "/dev/null";
fsType = "none";
};
boot.loader.grub.devices = [ "/dev/null" ];
};
in