Try to fix sops secrets path
This commit is contained in:
parent
8a4e6a584b
commit
e99dafbcfb
3 changed files with 6 additions and 15 deletions
|
@ -39,7 +39,7 @@ in
|
||||||
home = "/home/pipeline";
|
home = "/home/pipeline";
|
||||||
description = "User used by forgejo runners to connect to this system";
|
description = "User used by forgejo runners to connect to this system";
|
||||||
extraGroups = [ "docker" ];
|
extraGroups = [ "docker" ];
|
||||||
openssh.authorizedKeys.keyFiles = [ config.sops.secrets."foo".path ];
|
openssh.authorizedKeys.keyFiles = [ config.sops.secrets."example".path ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -37,6 +37,11 @@ in
|
||||||
"ubuntu-22.04:docker://node:16-bullseye"
|
"ubuntu-22.04:docker://node:16-bullseye"
|
||||||
"ubuntu-20.04:docker://node:16-bullseye"
|
"ubuntu-20.04:docker://node:16-bullseye"
|
||||||
];
|
];
|
||||||
|
settings = {
|
||||||
|
runner = {
|
||||||
|
capacity = 4;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue