os/modules/core/boot.nix

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

22 lines
367 B
Nix
Raw Normal View History

{
2022-11-20 22:28:23 +00:00
config,
pkgs,
lib,
...
}:
2021-10-24 20:03:28 +00:00
with lib; let
cfg = config.pub-solar.core;
2022-11-20 22:28:23 +00:00
in {
2021-05-30 19:10:28 +00:00
config = {
2022-05-01 15:29:21 +00:00
boot = {
2022-12-26 14:08:02 +00:00
loader.systemd-boot.enable = lib.mkDefault true;
# Use latest LTS linux kernel by default
kernelPackages = lib.mkDefault pkgs.linuxPackages_6_6_hardened;
# Support ntfs drives
supportedFilesystems = ["ntfs"];
2022-05-01 15:29:21 +00:00
};
2021-05-30 19:10:28 +00:00
};
}