2021-10-24 01:18:33 +02:00
|
|
|
{
|
2023-01-28 21:49:10 +01:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-06-13 02:14:25 +02:00
|
|
|
let
|
2023-01-28 21:49:10 +01:00
|
|
|
cfg = config.pub-solar.core;
|
|
|
|
in
|
|
|
|
{
|
2024-06-13 02:14:25 +02:00
|
|
|
options.pub-solar.core.disk-encryption-active = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2022-08-13 12:32:16 +02:00
|
|
|
default = true;
|
|
|
|
description = "Whether it should be assumed that there is a cryptroot device";
|
|
|
|
};
|
2022-08-14 15:05:32 +02:00
|
|
|
|
2021-05-30 21:10:28 +02:00
|
|
|
config = {
|
2022-05-01 17:29:21 +02:00
|
|
|
boot = {
|
|
|
|
# Mount / luks device in initrd
|
|
|
|
# Allow fstrim to work on it.
|
2024-06-13 02:14:25 +02:00
|
|
|
initrd = lib.mkIf cfg.disk-encryption-active {
|
2022-05-01 17:29:21 +02:00
|
|
|
luks.devices."cryptroot" = {
|
|
|
|
allowDiscards = true;
|
|
|
|
};
|
2021-05-30 21:10:28 +02:00
|
|
|
};
|
|
|
|
|
2022-12-26 15:08:02 +01:00
|
|
|
loader.systemd-boot.enable = lib.mkDefault true;
|
2022-08-13 20:35:43 +00:00
|
|
|
|
2023-11-10 19:48:06 +01:00
|
|
|
# Use latest LTS linux kernel by default
|
2024-06-16 19:36:36 +02:00
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_6_6;
|
2022-08-14 15:05:32 +02:00
|
|
|
|
|
|
|
# Support ntfs drives
|
2023-01-28 21:49:10 +01:00
|
|
|
supportedFilesystems = [ "ntfs" ];
|
2022-05-01 17:29:21 +02:00
|
|
|
};
|
2021-05-30 21:10:28 +02:00
|
|
|
};
|
|
|
|
}
|