forgejo-ci-runners/profiles/host-qemu.nix
2024-09-13 18:21:12 -05:00

13 lines
296 B
Nix

{ modulesPath, lib, ... }:
{
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
config = {
boot.growPartition = true;
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-root"; fsType = "ext4"; };
};
}