14 lines
229 B
Nix
14 lines
229 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
fileSystems."/nix" = {
|
||
|
device = "/dev/disk/by-label/optane";
|
||
|
fsType = "ext4";
|
||
|
neededForBoot = true;
|
||
|
};
|
||
|
fileSystems."/mnt/data" = {
|
||
|
device = "/dev/disk/by-label/data";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
}
|