Skip to content
This repository was archived by the owner on Sep 14, 2025. It is now read-only.

Commit efefdd5

Browse files
committed
gitea-actions: move ci tools to store dependencies to option
1 parent 145eae9 commit efefdd5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

modules/gitea-actions.nix

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@ let
2424
nodejs
2525
openssh
2626
rsync
27-
28-
# custom tools required in ci pipeline
29-
nixfmt-rfc-style
30-
deadnix
31-
gitleaks
32-
netcat
33-
gnused
34-
gnupg
35-
sops
36-
mkpasswd
3727
])
3828
++ cfg.storeDependencies;
3929
};
@@ -57,7 +47,17 @@ in
5747

5848
storeDependencies = lib.mkOption {
5949
type = lib.types.listOf lib.types.package;
60-
default = [ ];
50+
default = with pkgs; [
51+
# custom tools required in ci pipeline
52+
nixfmt-rfc-style
53+
deadnix
54+
gitleaks
55+
netcat
56+
gnused
57+
gnupg
58+
sops
59+
mkpasswd
60+
];
6161
description = "List of packages to symlink into the container";
6262
};
6363

0 commit comments

Comments
 (0)