forgejo-ci-runners/hardware/default.nix

16 lines
489 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";
2024-05-25 14:25:13 -05:00
fileSystems."/boot" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-ESP"; fsType = "vfat"; options=[ "fmask=0022" "dmask=0022" ]; };
fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-root"; fsType = "ext4"; };
2024-05-25 11:17:33 -05:00
networking.useNetworkd = true;
};
}