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)
|
|
|
|
];
|
|
|
|
|
2023-03-05 20:51:07 +00:00
|
|
|
nix.settings.substituters = ["https://beam.attic.rs/riscv"];
|
2023-03-03 09:46:02 +00:00
|
|
|
boot = {
|
2023-06-18 06:15:37 +00:00
|
|
|
supportedFilesystems = lib.mkForce ["vfat" "ext4"];
|
|
|
|
kernelPackages = pkgs.linuxPackagesFor pkgs.vf2Kernel;
|
2023-06-15 12:02:43 +00:00
|
|
|
kernelParams = [
|
|
|
|
"console=tty0"
|
|
|
|
"console=ttyS0,115200"
|
|
|
|
"earlycon=sbi"
|
|
|
|
"boot.shell_on_fail"
|
|
|
|
];
|
|
|
|
consoleLogLevel = 7;
|
2023-06-18 06:15:37 +00:00
|
|
|
initrd = {
|
|
|
|
network.enable = true;
|
|
|
|
network.flushBeforeStage2 = false;
|
|
|
|
availableKernelModules = [
|
|
|
|
"dw_mmc-starfive"
|
|
|
|
"motorcomm"
|
|
|
|
"dwmac-starfive"
|
|
|
|
"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"
|
|
|
|
"nvme"
|
|
|
|
"nfsv4"
|
|
|
|
];
|
|
|
|
};
|
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-06-18 06:15:37 +00:00
|
|
|
iscsi-initiator = {
|
|
|
|
discoverPortal = "192.168.2.1";
|
|
|
|
name = "iqn.2023-06.rs.chir:rs.chir.int.vf2";
|
|
|
|
target = "iqn.2023-06.rs.chir:rs.chir.int.nas.vf2";
|
|
|
|
};
|
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-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-18 06:15:37 +00:00
|
|
|
networking.useNetworkd = lib.mkForce false;
|
|
|
|
networking.interfaces.end0.useDHCP = true;
|
2023-06-11 14:30:56 +00:00
|
|
|
|
2023-06-18 06:15:37 +00:00
|
|
|
services.openiscsi = {
|
|
|
|
name = "iqn.2023-06.rs.chir:rs.chir.int.vf2";
|
|
|
|
discoverPortal = "192.168.2.1";
|
|
|
|
enable = true;
|
2023-06-11 14:30:56 +00:00
|
|
|
};
|
2023-03-03 09:46:02 +00:00
|
|
|
}
|