nixos-config/config/vf2.nix

195 lines
5.4 KiB
Nix
Raw Normal View History

2023-03-03 09:46:02 +00:00
{
lib,
nix-packages,
config,
pkgs,
2023-06-12 12:40:57 +00:00
nixpkgs,
2023-03-03 09:46:02 +00:00
...
2023-03-03 09:54:31 +00:00
} @ args: {
2023-03-03 09:46:02 +00:00
networking.hostName = "vf2";
networking.hostId = "ad325df9";
imports = [
./services/caddy
./services/acme.nix
2023-03-03 09:54:31 +00:00
./users/remote-build.nix
2023-06-15 12:02:43 +00:00
./systemd-boot.nix
2023-03-03 09:46:02 +00:00
];
2023-03-04 07:55:40 +00:00
environment.noXlibs = true;
2023-03-04 17:35:33 +00:00
nixpkgs.config.allowUnsupportedSystem = true;
2023-03-04 07:55:40 +00:00
2023-03-03 09:46:02 +00:00
nixpkgs.overlays = [
(import ../overlays/riscv.nix)
];
nix.settings.substituters = lib.mkForce [
"https://beam.attic.rs/riscv"
"https://cache.ztier.in"
"https://hydra.int.chir.rs"
];
2023-03-03 09:46:02 +00:00
boot = {
2023-06-15 14:04:43 +00:00
supportedFilesystems = lib.mkForce ["vfat" "ext4" "nfs"];
2023-06-15 14:27:48 +00:00
kernelPackages = pkgs.linuxPackagesFor (pkgs.vf2Kernel.override {
kernelPatches = with pkgs; [
# https://lore.kernel.org/all/20230524000012.15028-1-andre.przywara@arm.com/
rec {
name = "axp15060-1.patch";
patch = fetchpatch {
inherit name;
url = "https://lore.kernel.org/all/20230524000012.15028-2-andre.przywara@arm.com/raw";
hash = "sha256-kj4vQaT4CV29EHv8MtuTgM/semIPDdv2dmveo/X27vU=";
};
}
rec {
name = "axp15060-2.patch";
patch = fetchpatch {
inherit name;
url = "https://lore.kernel.org/all/20230524000012.15028-3-andre.przywara@arm.com/raw";
hash = "sha256-QCPQyKqoapMtqEDB9QgAuXA7n8e1OtG+YlIgeSQBxXM=";
};
}
rec {
name = "axp15060-3.patch";
patch = fetchpatch {
inherit name;
url = "https://lore.kernel.org/all/20230524000012.15028-4-andre.przywara@arm.com/raw";
hash = "sha256-SpKDm4PXR6qs7kX5SGVpFF/EPBijMhX1NsFUHrlCynM=";
};
}
];
argsOverride = {
structuredExtraConfig = with lib.kernel; {
CPU_FREQ = yes;
CPUFREQ_DT = yes;
CPUFREQ_DT_PLATDEV = yes;
DMADEVICES = yes;
GPIO_SYSFS = yes;
HIBERNATION = yes;
NO_HZ_IDLE = yes;
POWER_RESET_GPIO_RESTART = yes;
PROC_KCORE = yes;
PWM = yes;
PWM_STARFIVE_PTC = yes;
RD_GZIP = yes;
SENSORS_SFCTEMP = yes;
SERIAL_8250_DW = yes;
SIFIVE_CCACHE = yes;
SIFIVE_PLIC = yes;
RTC_DRV_STARFIVE = yes;
SPI_PL022 = yes;
SPI_PL022_STARFIVE = yes;
I2C = yes;
MFD_AXP20X = yes;
MFD_AXP20X_I2C = yes;
REGULATOR_AXP20X = yes;
# FATAL: modpost: drivers/gpu/drm/verisilicon/vs_drm: struct of_device_id is not terminated with a NULL entry!
DRM_VERISILICON = no;
PL330_DMA = no;
};
preferBuiltin = true;
};
});
2023-06-15 12:02:43 +00:00
kernelParams = [
"console=tty0"
"console=ttyS0,115200"
"earlycon=sbi"
"boot.shell_on_fail"
];
consoleLogLevel = 7;
2023-03-03 09:46:02 +00:00
initrd.availableKernelModules = [
"dw_mmc-starfive"
2023-06-15 12:02:43 +00:00
"motorcomm"
2023-06-13 17:14:53 +00:00
"dwmac-starfive"
2023-06-15 12:02:43 +00:00
"cdns3-starfive"
"jh7110-trng"
"jh7110-crypto"
"phy-jh7110-usb"
"phy-starfive-dphy-rx"
"clk-starfive-jh7110-aon"
"clk-starfive-jh7110-stg"
# "clk-starfive-jh7110-vout"
"clk-starfive-jh7110-isp"
# "clk-starfive-jh7100-audio"
"phy-jh7110-pcie"
"pcie-starfive"
2023-03-03 09:46:02 +00:00
"nvme"
"nfsv4"
2023-03-03 09:46:02 +00:00
];
initrd.extraUtilsCommands = ''
copy_bin_and_libs ${pkgs.nfs-utils}/bin/mount.nfs
'';
2023-06-15 12:02:43 +00:00
blacklistedKernelModules = [
"clk-starfive-jh7110-vout"
];
loader.systemd-boot.extraInstallCommands = ''
set -euo pipefail
cp --no-preserve=mode -r ${config.hardware.deviceTree.package} ${config.boot.loader.efi.efiSysMountPoint}/
for filename in ${config.boot.loader.efi.efiSysMountPoint}/loader/entries/nixos*-generation-[1-9]*.conf; do
if ! ${pkgs.gnugrep}/bin/grep -q 'devicetree' $filename; then
echo "devicetree /dtbs/${config.hardware.deviceTree.name}" >> $filename
fi
done
'';
2023-03-03 09:46:02 +00:00
};
fileSystems = {
2023-06-15 06:31:38 +00:00
"/boot" = {
2023-03-03 09:46:02 +00:00
device = "/dev/disk/by-label/FIRMWARE";
fsType = "vfat";
2023-06-15 06:31:38 +00:00
options = ["nofail"];
2023-03-03 09:46:02 +00:00
};
"/" = {
2023-06-11 14:30:56 +00:00
device = "192.168.2.1:/export/vf2";
fsType = "nfs";
options = ["nofail" "local_lock=all" "nfsvers=4.2"];
2023-03-03 09:46:02 +00:00
};
};
2023-06-11 14:30:56 +00:00
boot.initrd.network.enable = true;
2023-06-15 19:30:07 +00:00
boot.initrd.network.flushBeforeStage2 = false;
2023-06-15 12:02:43 +00:00
hardware.deviceTree.name = "starfive/jh7110-starfive-visionfive-2-v1.3b.dtb";
2023-06-11 14:30:56 +00:00
system.stateVersion = "23.05";
2023-03-03 09:54:31 +00:00
home-manager.users.darkkirb = import ./home-manager/darkkirb.nix {
desktop = false;
inherit args;
};
2023-03-06 14:44:47 +00:00
nix.settings.cores = 4;
nix.settings.max-jobs = 4;
2023-03-03 09:54:31 +00:00
nix.settings.system-features = [
"nixos-test"
"big-parallel"
"benchmark"
"ca-derivations"
2023-03-06 14:44:47 +00:00
"gccarch-riscv-i"
"gccarch-riscv-m"
"gccarch-riscv-a"
"gccarch-riscv-f"
"gccarch-riscv-d"
"gccarch-riscv-c"
2023-03-03 09:54:31 +00:00
];
nix.daemonCPUSchedPolicy = "idle";
nix.daemonIOSchedClass = "idle";
sops.secrets."root/.ssh/id_ed25519" = {
owner = "root";
path = "/root/.ssh/id_ed25519";
};
system.autoUpgrade.allowReboot = true;
services.tailscale.useRoutingFeatures = "server";
boot.kernel.sysctl."net.ipv4.conf.all.forwarding" = true;
2023-06-11 14:30:56 +00:00
2023-06-12 12:40:57 +00:00
nixpkgs = {
buildPlatform.config = "x86_64-linux";
hostPlatform.config = "riscv64-linux";
pkgs = lib.mkForce (import nixpkgs {
system = "x86_64-linux";
crossSystem = "riscv64-linux";
inherit (config.nixpkgs) config overlays;
});
2023-06-11 14:30:56 +00:00
};
2023-06-14 10:51:04 +00:00
nix.settings.post-build-hook = lib.mkForce "true";
2023-03-03 09:46:02 +00:00
}