summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/crapi/hardware-config.nix
blob: bba31dabd76f6fb3b2b1ede9562ca37983cfee7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ pkgs, lib, ... }:
{
  #raspi1
  boot.kernelParams = ["cma=32M" "console=ttyS0,115200n8" "console=tty0" "console=ttyS1,115200n8" ];

  boot.loader.grub.enable = false;
  boot.loader.raspberryPi.enable = true;
  boot.loader.raspberryPi.version = 1;
  boot.loader.raspberryPi.uboot.enable = true;
  boot.loader.raspberryPi.uboot.configurationLimit = 1;
  boot.loader.generationsDir.enable = lib.mkDefault false;
  hardware.enableRedistributableFirmware = true;
  boot.cleanTmpDir = true;
  environment.systemPackages = [ pkgs.raspberrypi-tools ];
  boot.kernelPackages = pkgs.linuxPackages_rpi;

  nix.binaryCaches = [ "http://nixos-arm.dezgeg.me/channel" ];
  nix.binaryCachePublicKeys = [ "nixos-arm.dezgeg.me-1:xBaUKS3n17BZPKeyxL4JfbTqECsT+ysbDJz29kLFRW0=%" ];

  fileSystems = {
    "/boot" = {
      device = "/dev/disk/by-label/NIXOS_BOOT";
      fsType = "vfat";
    };
    "/" = {
      device = "/dev/disk/by-label/NIXOS_SD";
      fsType = "ext4";
    };
  };

  system.activationScripts.create-swap = ''
    if [ ! -e /swapfile ]; then
      fallocate -l 2G /swapfile
      mkswap /swapfile
      chmod 600 /swapfile
    fi
  '';
  swapDevices = [ { device = "/swapfile"; size = 4096; } ];
}