style: format hardware/rpi4.nix

This commit is contained in:
Felix Schröter 2020-09-27 18:44:17 +02:00
parent a1806d8094
commit b5cac99097
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -6,15 +6,15 @@
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/boot" =
{ device = "/dev/disk/by-label/NIXOS_BOOT";
fsType = "vfat";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/NIXOS_BOOT";
fsType = "vfat";
};
fileSystems."/" =
{ device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
swapDevices = [ ];