{ config, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; # ZFS bootloader bootloader.loader = "grub"; bootloader.mode = "efi"; boot.loader.grub = { zfsSupport = true; efiInstallAsRemovable = true; mirroredBoots = [ { devices = [ "nodev" ]; path = "/boot"; } ]; }; # Disable suspend suspend.enable = false; system.stateVersion = "25.05"; }