NixConfig/hosts/default/system/bootloader.nix
Sojus07 cf447ad966 kekl
2025-05-28 00:01:07 +02:00

12 lines
159 B
Nix

{ config, pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
};
};
supportedFilesystems = [ "ntfs" ];
};
}