13 lines
224 B
Nix
13 lines
224 B
Nix
{...}: {
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
fileSystems."/Music" = {
|
|
device = "/dev/disk/by-label/music";
|
|
fsType = "ext4";
|
|
options = ["nofail"];
|
|
};
|
|
}
|