forgejo-ci-runners/hardware/default.nix

15 lines
311 B
Nix
Raw Normal View History

2024-05-25 11:17:33 -05:00
{ config, modulesPath, lib, ... }:
{
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
config = {
boot.growPartition = true;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; };
networking.useNetworkd = true;
};
}