nixos-config/machines/usbstick/hardware-configuration/default.nix
Ingolf Wagner 848eccb959
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 10m19s
made usbstick work again
2024-08-09 02:45:22 +02:00

20 lines
462 B
Nix

{
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;
boot.tmpOnTmpfs = true;
# zfs
boot.supportedFilesystems = [ "zfs" ];
networking.hostId = "2ed43034";
}