Compare commits

..

3 commits

Author SHA1 Message Date
44f5da55f7
Add a deployment for forgejo-ci
use passed args

tag part

fix secrets
2025-07-02 13:43:26 +02:00
d7939e03aa
Make forgejo-ci a Forgejo actions runner
tag runner
2025-07-02 12:43:18 +02:00
7811cf9eeb
Copy configuration from forgejo-ci
note on ssh config

tag conf
2025-07-02 12:43:16 +02:00
3 changed files with 6 additions and 6 deletions

View file

@ -23,9 +23,4 @@ in
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
}

View file

@ -6,6 +6,11 @@
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = [
"ata_piix"

View file

@ -47,7 +47,7 @@ in
age.secrets = concatMapAttrs (
name: secret:
optionalAttrs (elem hostPublicKey secret.publicKeys) {
${removeSuffix ".age" name}.file = secrets.rootPath + "/${name}";
${removeSuffix ".age" name}.file = secrets.rootPath + "secrets/${name}";
}
) secrets.mapping;