Compare commits

...

2 commits

Author SHA1 Message Date
9bab917d8c ignore rust artefacts 2026-03-03 11:45:15 +10:00
0651bd0118 default install sops 2026-02-27 13:01:33 +10:00
2 changed files with 9 additions and 3 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
/hidden /hidden
target/

View file

@ -13,6 +13,7 @@
# limitations under the License. # limitations under the License.
{ {
root, root,
pkgs,
system, system,
_cerulean, _cerulean,
... ...
@ -36,7 +37,11 @@
else [] else []
); );
environment.systemPackages = with _cerulean.inputs; [ environment.systemPackages =
deploy-rs.packages.${system}.default (with pkgs; [
]; sops
])
++ (with _cerulean.inputs; [
deploy-rs.packages.${system}.default
]);
} }