nix-config/hosts/skycam/hardware-configuration.nix
Jordan Holt f42442dd0e
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m37s
Add skycam host
2024-08-03 21:22:38 +01:00

34 lines
650 B
Nix

{ config, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/sd-card/sd-image-aarch64.nix")
];
boot = {
kernelModules = [ "bcm2835-v4l2" ];
loader.raspberryPi.firmwareConfig = ''
start_x=1
gpu_mem=256
'';
supportedFilesystems = lib.mkForce [ "f2fs" "vfat xfs" ];
tmp.cleanOnBoot = true;
};
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
options = [ "noatime" ];
};
};
}