2021-10-23 23:18:33 +00:00
|
|
|
{
|
2022-11-20 22:28:23 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2021-10-24 20:03:28 +00:00
|
|
|
with lib; let
|
2022-08-13 20:59:05 +00:00
|
|
|
cfg = config.pub-solar.core;
|
2022-11-20 22:28:23 +00:00
|
|
|
in {
|
2022-08-13 20:59:05 +00:00
|
|
|
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";
|
|
|
|
};
|
2022-08-14 13:05:32 +00:00
|
|
|
|
2021-05-30 19:10:28 +00:00
|
|
|
config = {
|
2022-05-01 15:29:21 +00:00
|
|
|
boot = {
|
|
|
|
# Mount / luks device in initrd
|
|
|
|
# Allow fstrim to work on it.
|
|
|
|
# The ! makes this enabled by default
|
2023-10-07 14:45:42 +00:00
|
|
|
initrd = mkIf 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;
|
2022-08-13 20:35:43 +00:00
|
|
|
|
2022-08-14 13:05:32 +00:00
|
|
|
# Use latest LTS linux kernel by default
|
2023-06-13 13:05:53 +00:00
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_6_1;
|
2022-08-14 13:05:32 +00:00
|
|
|
|
|
|
|
# Support ntfs drives
|
|
|
|
supportedFilesystems = ["ntfs"];
|
2022-05-01 15:29:21 +00:00
|
|
|
};
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|