a binary-cache for some uC kernel, copy example configs to image
This commit is contained in:
parent
c5f1c04a30
commit
feefa56ea0
@ -8,11 +8,14 @@
|
|||||||
speedFactor = 30;
|
speedFactor = 30;
|
||||||
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
|
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
|
||||||
protocol = "ssh-ng";
|
protocol = "ssh-ng";
|
||||||
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUtNNHFWdEljcTJkazhNRWRzTG85L0lDaTI2YUloalowMGgvN3ZLcml2UWogcm9vdEBuaXhvcwo=";
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
nix.settings.substituters = ["http://nixcache.trustno1.corp/"];
|
nix.settings = {
|
||||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
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;
|
services.openssh.enable = true;
|
||||||
users.users.oom = {
|
users.users.oom = {
|
||||||
|
@ -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.grub.enable = false;
|
||||||
boot.loader.generic-extlinux-compatible.enable = true;
|
boot.loader.generic-extlinux-compatible.enable = true;
|
||||||
boot.supportedFilesystems.zfs = lib.mkForce false;
|
boot.supportedFilesystems.zfs = lib.mkForce false;
|
||||||
@ -61,7 +67,6 @@
|
|||||||
cpi-disable-pcie.enable = true;
|
cpi-disable-pcie.enable = true;
|
||||||
cpi-disable-genet.enable = true;
|
cpi-disable-genet.enable = true;
|
||||||
cpi-uconsole.enable = true;
|
cpi-uconsole.enable = true;
|
||||||
# cpi-pmu.enable = true;
|
|
||||||
cpi-i2c1.enable = false;
|
cpi-i2c1.enable = false;
|
||||||
cpi-spi4.enable = false;
|
cpi-spi4.enable = false;
|
||||||
cpi-bluetooth.enable = true;
|
cpi-bluetooth.enable = true;
|
||||||
@ -148,7 +153,9 @@
|
|||||||
populateRootCommands = ''
|
populateRootCommands = ''
|
||||||
mkdir -p ./files/boot
|
mkdir -p ./files/boot
|
||||||
mkdir -p ./files/boot/firmware
|
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
|
${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot
|
||||||
|
cp ${./configs}/* ./files/etc/nixos
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user