18 lines
305 B
Nix
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" ];
|
|
};
|
|
}
|