12 lines
159 B
Nix
12 lines
159 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
};
|
|
};
|
|
supportedFilesystems = [ "ntfs" ];
|
|
};
|
|
}
|