Try to fix sops secrets path

This commit is contained in:
hodasemi 2025-05-22 13:40:56 +02:00
parent 8a4e6a584b
commit e99dafbcfb
3 changed files with 6 additions and 15 deletions

View file

@ -39,7 +39,7 @@ in
home = "/home/pipeline";
description = "User used by forgejo runners to connect to this system";
extraGroups = [ "docker" ];
openssh.authorizedKeys.keyFiles = [ config.sops.secrets."foo".path ];
openssh.authorizedKeys.keyFiles = [ config.sops.secrets."example".path ];
};
};
}

View file

@ -1,14 +0,0 @@
# TODO: Copy paste after install nixos, this should include `hardware-configuration.nix`s contents
{
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/dev/disk/bazqux";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/foobar";
fsType = "vfat";
};
}

View file

@ -37,6 +37,11 @@ in
"ubuntu-22.04:docker://node:16-bullseye"
"ubuntu-20.04:docker://node:16-bullseye"
];
settings = {
runner = {
capacity = 4;
};
};
};
};
};