nix-config/hosts/skycam/hardware-configuration.nix
2024-08-05 17:54:43 +01:00

13 lines
183 B
Nix

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