12 lines
188 B
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
|
|
];
|
|
}
|
|
|