feat: set up 'eetion-02' raspberry pi host

This commit is contained in:
2026-03-11 21:25:32 +01:00
committed by hektor
parent 3be1b5c384
commit d205b4b129
7 changed files with 220 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
{ lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
initrd.availableKernelModules = [ ];
initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
};
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
options = [ "noatime" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}