nix-config/hosts/pi/hardware-configuration.nix
2023-12-03 23:17:30 +00:00

17 lines
245 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
<nixos-hardware/raspberry-pi/4>
];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
options = [ "noatime" ];
};
};
}