2025-02-09 17:38:49 +01:00

18 lines
305 B
Nix

{ config, pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
extraEntries = {
"mint.conf" = ''
title Linux Mint
efi /EFI/ubuntu/shimx64.efi
'';
};
};
};
supportedFilesystems = [ "ntfs" ];
};
}