omo:add nvme-extra

This commit is contained in:
makefu 2024-01-25 01:43:08 +01:00
parent 5370bd56a3
commit 8c40d7346c
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -0,0 +1,27 @@
{
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" ];
};
}
];
};
};
};
};
}