default.nix (322B)
1 { config, ... }: 2 { 3 config = { 4 boot = { 5 initrd.systemd.enable = true; 6 7 zfs = { 8 devNodes = dirOf config.disko.devices.disk.system.device; 9 forceImportRoot = false; 10 }; 11 12 loader = { 13 systemd-boot.enable = true; 14 efi.canTouchEfiVariables = true; 15 }; 16 }; 17 }; 18 }