mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
feat(github-runner): preinstalled packages
This commit is contained in:
parent
3827f498e9
commit
3a7bea8a8a
1 changed files with 6 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
config,
|
config,
|
||||||
gensokyo-zone,
|
gensokyo-zone,
|
||||||
lib,
|
lib,
|
||||||
|
|
@ -73,6 +74,11 @@ in {
|
||||||
extraEnvironment = {
|
extraEnvironment = {
|
||||||
GIT_TEXTDOMAINDIR = "${config.programs.git.package}/share/locale";
|
GIT_TEXTDOMAINDIR = "${config.programs.git.package}/share/locale";
|
||||||
};
|
};
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
rsync
|
||||||
|
zip
|
||||||
|
curl
|
||||||
|
];
|
||||||
networkNamespace.name = mkIf (cfg.networkNamespace.name != null) (mkDefault cfg.networkNamespace.name);
|
networkNamespace.name = mkIf (cfg.networkNamespace.name != null) (mkDefault cfg.networkNamespace.name);
|
||||||
serviceSettings = {
|
serviceSettings = {
|
||||||
wantedBy = ["${cfg.targetName}.target"];
|
wantedBy = ["${cfg.targetName}.target"];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue