a binary-cache for some uC kernel, copy example configs to image

This commit is contained in:
robert jakub 2024-10-27 17:37:28 +01:00
parent c5f1c04a30
commit feefa56ea0
2 changed files with 14 additions and 4 deletions

View File

@ -8,11 +8,14 @@
speedFactor = 30;
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
protocol = "ssh-ng";
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUtNNHFWdEljcTJkazhNRWRzTG85L0lDaTI2YUloalowMGgvN3ZLcml2UWogcm9vdEBuaXhvcwo=";
}
];
nix.settings.substituters = ["http://nixcache.trustno1.corp/"];
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings = {
substituters = ["https://cache-nix.project2.xyz/uconsole" "https://nixcache.trustno1.corp/"];
trusted-substituters = ["https://cache-nix.project2.xyz/uconsole"];
trusted-public-keys = ["uconsole:t2pv3NWEtXCYY0fgv9BB8r9tRdK+Tz7HYhGq9bXIIck="];
experimental-features = ["nix-command" "flakes"];
};
services.openssh.enable = true;
users.users.oom = {

View File

@ -20,6 +20,12 @@
})
];
nix.settings = {
substituters = ["https://cache-nix.project2.xyz/uconsole"];
trusted-substituters = ["https://cache-nix.project2.xyz/uconsole"];
trusted-public-keys = ["uconsole:t2pv3NWEtXCYY0fgv9BB8r9tRdK+Tz7HYhGq9bXIIck="];
};
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
boot.supportedFilesystems.zfs = lib.mkForce false;
@ -61,7 +67,6 @@
cpi-disable-pcie.enable = true;
cpi-disable-genet.enable = true;
cpi-uconsole.enable = true;
# cpi-pmu.enable = true;
cpi-i2c1.enable = false;
cpi-spi4.enable = false;
cpi-bluetooth.enable = true;
@ -148,7 +153,9 @@
populateRootCommands = ''
mkdir -p ./files/boot
mkdir -p ./files/boot/firmware
mkdir -p ./files/etc/nixos
${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot
cp ${./configs}/* ./files/etc/nixos
'';
};
}