2021-05-30 19:10:28 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2022-01-19 00:13:15 +00:00
|
|
|
with lib;
|
2021-05-30 19:10:28 +00:00
|
|
|
let
|
|
|
|
cfg = config.pub-solar.x-os;
|
|
|
|
in
|
2021-10-23 23:18:33 +00:00
|
|
|
{
|
2022-01-19 00:13:15 +00:00
|
|
|
options.pub-solar.x-os.iso-options.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Feature flag for iso builds";
|
|
|
|
};
|
2021-05-30 19:10:28 +00:00
|
|
|
config = {
|
|
|
|
# Enable plymouth for better experience of booting
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
|
2021-10-23 23:18:33 +00:00
|
|
|
# Mount / luks device in initrd
|
2021-05-30 19:10:28 +00:00
|
|
|
# Allow fstrim to work on it.
|
2022-01-19 00:13:15 +00:00
|
|
|
# The ! makes this enabled by default
|
|
|
|
boot.initrd = mkIf (!cfg.iso-options.enable) {
|
2021-05-30 19:10:28 +00:00
|
|
|
luks.devices."cryptroot" = {
|
|
|
|
allowDiscards = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-10-23 23:18:33 +00:00
|
|
|
boot.loader.systemd-boot.enable = true;
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|