os/modules/x-os/boot.nix

22 lines
394 B
Nix
Raw Normal View History

2021-05-30 19:10:28 +00:00
{ config, pkgs, lib, ... }:
let
cfg = config.pub-solar.x-os;
in
{
2021-05-30 19:10:28 +00:00
config = {
# Enable plymouth for better experience of booting
boot.plymouth.enable = true;
# Mount / luks device in initrd
2021-05-30 19:10:28 +00:00
# Allow fstrim to work on it.
boot.initrd = {
luks.devices."cryptroot" = {
allowDiscards = true;
};
};
boot.loader.systemd-boot.enable = true;
2021-05-30 19:10:28 +00:00
};
}