Alejandro Angulo
30832c3ac1
I noticed switching got slower and slower as I kept switching and there were a lot of duplicate directories in my mount output. See: https://discourse.nixos.org/t/duplicate-boot-entries-in-mount-output/26923/
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
boot.supportedFilesystems = ["zfs"];
|
|
networking.hostId = "f8616592";
|
|
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efis/nvme-WDC_WDS100T2B0C-00PXH0_21111Y801086-part1";
|
|
boot.loader.efi.canTouchEfiVariables = false;
|
|
boot.loader.generationsDir.copyKernels = true;
|
|
boot.loader.grub.efiInstallAsRemovable = true;
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.version = 2;
|
|
boot.loader.grub.copyKernels = true;
|
|
boot.loader.grub.efiSupport = true;
|
|
boot.loader.grub.zfsSupport = true;
|
|
boot.loader.grub.extraPrepareConfig = ''
|
|
mkdir -p /boot/efis
|
|
for i in /boot/efis/* ; do
|
|
(mount | grep -q "$i")
|
|
isDirectoryMounted=$?
|
|
if (test $isDirectoryMounted -ne 0); then
|
|
mount "$i"
|
|
fi
|
|
done
|
|
|
|
mkdir -p /boot/efi
|
|
# mount /boot/efi
|
|
(mount | grep -q /boot/efi)
|
|
isDirectoryMounted=$?
|
|
if (test $isDirectoryMounted -ne 0); then
|
|
mount /boot/efi
|
|
fi
|
|
'';
|
|
boot.loader.grub.extraInstallCommands = ''
|
|
ESP_MIRROR=$(mktemp -d)
|
|
cp -r /boot/efis/nvme-WDC_WDS100T2B0C-00PXH0_21111Y801086-part1/EFI $ESP_MIRROR
|
|
for i in /boot/efis/*; do
|
|
cp -r $ESP_MIRROR/EFI $i
|
|
done
|
|
rm -rf $ESP_MIRROR
|
|
'';
|
|
boot.loader.grub.devices = [
|
|
"/dev/disk/by-id/nvme-WDC_WDS100T2B0C-00PXH0_21111Y801086"
|
|
];
|
|
users.users.root.initialHashedPassword = "$6$3Ps2Vmff.gUBkiCv$FCeCQjDvNTdWynQU81qtCXFHQht86w4unWNalUgkcyq7lkkI2klzRyTK3dZiQUjIrn8qPKtwJcY9SNdyE8v1L/";
|
|
}
|