nixos-config/machines/omo/hw/nvme-extra.nix
2024-01-25 01:43:08 +01:00

28 lines
569 B
Nix

{
disko.devices = {
disk = {
datanvme = {
type = "disk";
device ="/dev/nvme0n1";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "silent";
start = "0";
end = "100%";
content = {
type ="filesystem";
format = "xfs";
mountpoint = "/media/silent";
mountOptions = [ "nofail" ];
};
}
];
};
};
};
};
}