Files
nix/hosts/common/configs/boot/default.nix
Nikolaos Karaolidis a25076c47b Add bluetooth
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-07-04 12:22:55 +03:00

20 lines
326 B
Nix

{ pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
};
timeout = 1;
efi.canTouchEfiVariables = true;
};
initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = [ "btrfs" "ntfs" ];
};
}