summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/sdcard/config.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/1systems/sdcard/config.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/1systems/sdcard/config.nix')
-rw-r--r--makefu/1systems/sdcard/config.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/makefu/1systems/sdcard/config.nix b/makefu/1systems/sdcard/config.nix
deleted file mode 100644
index 4e3c22a3..00000000
--- a/makefu/1systems/sdcard/config.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ config, pkgs, lib, ... }:
-let
- kernel = pkgs.callPackage ./kernel.nix {
- kernelPatches = with pkgs.kernelPatches; [
- # kernelPatches.bridge_stp_helper
- # kernelPatches.modinst_arg_list_too_long
- ];
- };
-in
-{
- imports = [
- <nixpkgs/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix>
- # <stockholm/makefu/2configs/minimal.nix>
- ];
- # TODO: NIX_PATH and nix.nixPath are being set by default.nix right now
- # cd ~/stockholm ; nix build config.system.build.sdImage -I nixos-config=makefu/1systems/sdcard/config.nix -f /home/makefu/nixpkgs/nixos
-
- boot.kernelParams = ["console=ttyS2,1500000" "earlycon=uart8250,mmio32,0xff1a0000"];
- # boot.kernelPackages = pkgs.linuxPackages_latest;
- boot.kernelPackages = pkgs.linuxPackagesFor kernel;
- boot.supportedFilesystems = lib.mkForce [ "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
-
- # krebs.hidden-ssh.enable = true;
- environment.systemPackages = with pkgs; [
- aria2
- ddrescue
- ];
- environment.extraInit = ''
- EDITOR=vim
- '';
- # iso-specific
- services.openssh = {
- enable = true;
- hostKeys = [
- { bits = 8192; type = "ed25519"; path = "/etc/ssh/ssh_host_ed25519_key"; }
- ];
- };
- # enable ssh in the iso boot process
- systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ];
-}