demo: add needed fsType
See https://github.com/NixOS/nixpkgs/pull/444829
This commit is contained in:
parent
acee18e7a3
commit
e07b414473
1 changed files with 4 additions and 1 deletions
|
|
@ -24,7 +24,10 @@
|
||||||
# This module makes the assertions happy and the build succeed.
|
# This module makes the assertions happy and the build succeed.
|
||||||
# This is of course wrong and will not work on any real system.
|
# This is of course wrong and will not work on any real system.
|
||||||
filesystemModule = {
|
filesystemModule = {
|
||||||
fileSystems."/".device = "/dev/null";
|
fileSystems."/" = {
|
||||||
|
device = "/dev/null";
|
||||||
|
fsType = "none";
|
||||||
|
};
|
||||||
boot.loader.grub.devices = [ "/dev/null" ];
|
boot.loader.grub.devices = [ "/dev/null" ];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue