summaryrefslogtreecommitdiffstats
path: root/krebs/1systems/onebutton
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-04-21 12:53:32 +0200
committermakefu <github@syntax-fehler.de>2018-04-21 12:53:32 +0200
commitee30fc920e0512d9d2359404051ba12efc3ee6f2 (patch)
treebb5ef4d5b984265e392d142c07ec970a11cb50d2 /krebs/1systems/onebutton
parent54c104e1e1f59906ddf855d6993de14d07a093dc (diff)
onebutton.r: init
Diffstat (limited to 'krebs/1systems/onebutton')
-rw-r--r--krebs/1systems/onebutton/config.nix32
-rw-r--r--krebs/1systems/onebutton/source.nix11
2 files changed, 43 insertions, 0 deletions
diff --git a/krebs/1systems/onebutton/config.nix b/krebs/1systems/onebutton/config.nix
new file mode 100644
index 00000000..08a9d642
--- /dev/null
+++ b/krebs/1systems/onebutton/config.nix
@@ -0,0 +1,32 @@
+{ config, pkgs, lib, ... }:
+{
+ imports = [
+ <stockholm/krebs>
+ ];
+ # NixOS wants to enable GRUB by default
+ boot.loader.grub.enable = false;
+ # Enables the generation of /boot/extlinux/extlinux.conf
+ boot.loader.generic-extlinux-compatible.enable = true;
+
+ # !!! If your board is a Raspberry Pi 1, select this:
+ boot.kernelPackages = pkgs.linuxPackages_rpi;
+
+ nix.binaryCaches = [ "http://nixos-arm.dezgeg.me/channel" ];
+ nix.binaryCachePublicKeys = [ "nixos-arm.dezgeg.me-1:xBaUKS3n17BZPKeyxL4JfbTqECsT+ysbDJz29kLFRW0=%" ];
+
+ # !!! Needed for the virtual console to work on the RPi 3, as the default of 16M doesn't seem to be enough.
+ # boot.kernelParams = ["cma=32M"];
+
+ fileSystems = {
+ "/boot" = {
+ device = "/dev/disk/by-label/NIXOS_BOOT";
+ fsType = "vfat";
+ };
+ "/" = {
+ device = "/dev/disk/by-label/NIXOS_SD";
+ fsType = "ext4";
+ };
+ };
+
+ swapDevices = [ { device = "/swapfile"; size = 1024; } ];
+}
diff --git a/krebs/1systems/onebutton/source.nix b/krebs/1systems/onebutton/source.nix
new file mode 100644
index 00000000..3ecaf900
--- /dev/null
+++ b/krebs/1systems/onebutton/source.nix
@@ -0,0 +1,11 @@
+let
+ pkgs = import <nixpkgs> {};
+in import <stockholm/krebs/source.nix> {
+ name = "onebutton";
+ nixpkgs.file = pkgs.fetchFromGitHub {
+ owner = "nixos";
+ repo = "nixpkgs-channels";
+ rev = "6c064e6b"; # only binary cache for unstable arm6
+ sha256 = "0ssaaaaaaaaaaaawkgjk8c75mvhgn5z7g1dkb78r8vrih9428bb8";
+ };
+}