Sojus07 4da8df94ac kekl
2025-02-18 22:01: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" ];
};
}