os/modules/core/boot.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

{
2023-01-28 20:49:10 +00:00
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.pub-solar.core;
in {
options.pub-solar.core.iso-options.enable = mkOption {
2021-10-25 23:06:13 +00:00
type = types.bool;
default = false;
description = "Feature flag for iso builds";
};
options.pub-solar.core.disk-encryption-active = mkOption {
2022-08-13 10:32:16 +00:00
type = types.bool;
default = true;
description = "Whether it should be assumed that there is a cryptroot device";
};
2021-05-30 19:10:28 +00:00
config = {
2022-05-01 15:29:21 +00:00
boot = {
# Enable plymouth for better experience of booting
plymouth.enable = mkIf (!cfg.lite) (lib.mkDefault true);
2021-05-30 19:10:28 +00:00
2022-05-01 15:29:21 +00:00
# Mount / luks device in initrd
# Allow fstrim to work on it.
# The ! makes this enabled by default
initrd = mkIf (!cfg.iso-options.enable && cfg.disk-encryption-active) {
2022-05-01 15:29:21 +00:00
luks.devices."cryptroot" = {
allowDiscards = true;
};
2021-05-30 19:10:28 +00:00
};
2022-12-26 14:08:02 +00:00
loader.systemd-boot.enable = lib.mkDefault true;
2023-03-27 08:45:49 +00:00
# Use latest linux kernel by default
2023-07-02 00:48:10 +00:00
kernelPackages = lib.mkDefault pkgs.linuxPackages_6_4;
# Support ntfs drives
2023-01-28 20:49:10 +00:00
supportedFilesystems = ["ntfs"];
2022-05-01 15:29:21 +00:00
};
2021-05-30 19:10:28 +00:00
};
}