13 lines
183 B
Nix
13 lines
183 B
Nix
{ config, lib, modulesPath, ... }:
|
|
|
|
{
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-label/NIXOS_SD";
|
|
fsType = "ext4";
|
|
options = [ "noatime" ];
|
|
};
|
|
};
|
|
}
|
|
|