Hendrik Sokolowski
4190818304
* move core settings to x-os * add option to only install a lite core * rename x-os module to core * remove core profile from flake.nix
39 lines
1,021 B
Nix
39 lines
1,021 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.pub-solar.core;
|
|
in
|
|
{
|
|
options.pub-solar.core.iso-options.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Feature flag for iso builds";
|
|
};
|
|
options.pub-solar.core.disk-encryption-active = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Whether it should be assumed that there is a cryptroot device";
|
|
};
|
|
config = {
|
|
# Enable plymouth for better experience of booting
|
|
boot.plymouth.enable = true;
|
|
|
|
# Mount / luks device in initrd
|
|
# Allow fstrim to work on it.
|
|
# The ! makes this enabled by default
|
|
boot.initrd = mkIf (!cfg.iso-options.enable && cfg.disk-encryption-active) {
|
|
luks.devices."cryptroot" = {
|
|
allowDiscards = true;
|
|
};
|
|
};
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
# Use latest LTS linux kernel by default
|
|
boot.kernelPackages = pkgs.linuxPackages_5_15;
|
|
|
|
# Support ntfs drives
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
|
};
|
|
}
|