nix-config/modules/microvm-defaults.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
246 B
Nix
Raw Normal View History

2023-02-21 00:07:14 +01:00
# No MicroVM settings but some defaults that enable evaulating NixOS
# configurations that are destined to be used on Skyflake
{ lib, ... }:
{
fileSystems."/" = lib.mkDefault {
fsType = "tmpfs";
};
boot.loader.grub.enable = false;
}