nixos-config/machines/usbstick/hardware-configuration/default.nix
Ingolf Wagner 7a6510a4e6
Some checks are pending
Build all NixOS Configurations / nix build (push) Waiting to run
nix fmt
2024-08-29 08:26:04 +07:00

19 lines
463 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.tmp.useTmpfs = true;
# zfs
boot.supportedFilesystems = [ "zfs" ];
networking.hostId = "2ed43034";
}