nixos-config/machines/usbstick/hardware-configuration/default.nix

19 lines
463 B
Nix
Raw Normal View History

2024-08-09 02:44:54 +02:00
{
imports = [
./hardware-configuration.nix
#./disko-config.nix # todo: not used yet (use a simple installer usb stick for that)
];
# grub configuraton
# -----------------
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.efiInstallAsRemovable = true;
2024-08-09 16:27:15 +02:00
boot.tmp.useTmpfs = true;
2024-08-09 02:44:54 +02:00
# zfs
boot.supportedFilesystems = [ "zfs" ];
networking.hostId = "2ed43034";
}