slab: enable systemd initrd and plymouth

This commit is contained in:
NullBite 2024-07-05 02:21:19 -04:00
parent 08c9e0d17a
commit f5fd9b7187
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -74,12 +74,17 @@
networking.hostName = "slab";
boot.initrd.systemd.enable = true;
boot.plymouth.enable = true;
boot.kernelParams = [ "quiet" ];
# cryptsetup
boot.initrd.luks.devices = {
lvmroot = {
device="/dev/disk/by-uuid/2872c0f0-e544-45f0-9b6c-ea022af7805a";
allowDiscards = true;
fallbackToPassword = true;
fallbackToPassword = lib.mkIf (!config.boot.initrd.systemd.enable) true;
preLVM = true;
};
};