Files
nix-dotfiles/systems/argiletum/hardware.nix
T

22 lines
444 B
Nix
Raw Normal View History

2026-05-03 13:59:56 -04:00
# TODO: replace with the output of:
# sudo nixos-generate-config --show-hardware-config
# run on the Pi after initial boot into the NixOS installer.
{ ... }:
{
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot/firmware" = {
device = "/dev/disk/by-label/NIXOS_BOOT";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [ ];
}