nixfiles/hosts/hetzner-arm/hardware.nix
2025-02-16 14:08:51 +00:00

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"];
};
}