23 lines
297 B
Nix
23 lines
297 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../disko/hetzner.nix
|
||
|
./networking.nix
|
||
|
];
|
||
|
disko.devices.disk.main.device = "scsi-0QEMU_QEMU_HARDDISK_55513992";
|
||
|
|
||
|
boot = {
|
||
|
useSystemdBoot = true;
|
||
|
};
|
||
|
|
||
|
hardware.enableAllFirmware = true;
|
||
|
|
||
|
system.stateVersion = "24.05";
|
||
|
}
|