nixos-config/system/mistmane/boot-config.nix

22 lines
521 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
boot = {
2021-10-12 20:48:36 +00:00
kernelParams = [ "console=tty1" ];
2023-06-06 00:51:11 +00:00
tmp.cleanOnBoot = true;
loader.grub.enable = false;
loader.generic-extlinux-compatible.enable = true;
2021-10-12 20:48:36 +00:00
initrd.luks.devices."${config.networking.hostName}" = {
name = config.networking.hostName;
device = "/dev/disk/by-uuid/74b7cded-e9f8-432f-b694-5bea09635168";
preLVM = true;
allowDiscards = true;
};
};
fileSystems = {
"/boot".options = [ "noatime" ];
"/".options = [ "noatime" ];
};
}