forked from the-distro/infra
This is the first Lix machine we are enrolling in our infrastructure (!). It's using all the previous commits to make it cozy with our current infra style. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
28 lines
643 B
Nix
28 lines
643 B
Nix
{ ... }: {
|
|
networking.hostName = "build01";
|
|
networking.domain = "aarch64.lix.systems";
|
|
|
|
# Those free sweet VMs.
|
|
bagel.hardware.oracle-vm = {
|
|
enable = true;
|
|
system = "aarch64-linux";
|
|
};
|
|
|
|
fileSystems."/" =
|
|
{ device = "/dev/disk/by-uuid/a333323c-99f0-4258-8f68-496858d56f71";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" =
|
|
{ device = "/dev/disk/by-uuid/3E74-C937";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
|
|
bagel.builders.extra-build-capacity.provider.enable = true;
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
system.stateVersion = "24.05";
|
|
deployment.targetHost = "build01.aarch64.lix.systems";
|
|
}
|