9 lines
135 B
Nix
9 lines
135 B
Nix
|
{ ... }: {
|
||
|
|
||
|
fileSystems."/" = {
|
||
|
device = "/dev/disk/by-label/NIXOS_SD";
|
||
|
fsType = "ext4";
|
||
|
options = [ "noatime" ];
|
||
|
};
|
||
|
}
|