flake: Add missing bootloader for phone vm

This fixes an issue where `nix flake check` would previously fail.
This commit is contained in:
Donovan Glover 2024-06-15 13:18:15 -04:00
parent ad506d827e
commit 22894d86c4
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -75,7 +75,11 @@
mobile-nixos-vm = nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = phoneModules;
modules = phoneModules ++ [
{
boot.loader.systemd-boot.enable = true;
}
];
};
};