omo:add nvme-extra
This commit is contained in:
parent
5370bd56a3
commit
8c40d7346c
27
machines/omo/hw/nvme-extra.nix
Normal file
27
machines/omo/hw/nvme-extra.nix
Normal 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" ];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue