1
0
Fork 0
nixfiles/pkgs/nixfiles/nixfiles-add-secret.nix

12 lines
188 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "nixfiles-add-secret";
text = builtins.readFile ./nixfiles-add-secret.sh;
runtimeInputs = with pkgs; [
agenix
git
];
}