configuration.nix/system.rico/hardware/filesystem.nix

9 lines
135 B
Nix
Raw Normal View History

2023-04-10 23:07:41 +05:30
{ ... }: {
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
options = [ "noatime" ];
};
}