add argiletum

This commit is contained in:
2026-05-03 13:59:56 -04:00
parent 24d451f825
commit 9222be4052
4 changed files with 67 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# 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 = [ ];
}