17 lines
264 B
Nix
17 lines
264 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
};
|
|
grub = {
|
|
enable = false;
|
|
device = "/dev/sda";
|
|
useOSProber = true;
|
|
};
|
|
};
|
|
supportedFilesystems = [ "ntfs" ];
|
|
};
|
|
}
|