buildbot: init #68

Merged
raito merged 8 commits from buildbot into main 2024-07-18 08:58:00 +00:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit e00d0331ec - Show all commits

View file

@ -1,4 +1,8 @@
{ lib, pkgs, ... }: {
imports = [
./known-ssh-keys.nix
];
nixpkgs.overlays = import ../overlays;
nix.package = lib.mkDefault pkgs.lix;

View file

@ -0,0 +1,6 @@
{ ... }:
{
programs.ssh.knownHosts = {
"[cl.forkos.org]:29418".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM82mJ259C8Nc+BHHNBeRWXWhL3dfirQhmFbDAwHMle3";
};
}