mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 17:50:48 +03:00
25 lines
439 B
Nix
25 lines
439 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: let
|
||
|
secret = "hello";
|
||
|
testScript = pkgs.writeShellApplication {
|
||
|
name = "agenix-integration";
|
||
|
text = ''
|
||
|
grep ${secret} ${config.age.secrets.secret1.path}
|
||
|
'';
|
||
|
};
|
||
|
in {
|
||
|
imports = [
|
||
|
./install_ssh_host_keys_darwin.nix
|
||
|
../modules/age.nix
|
||
|
];
|
||
|
|
||
|
services.nix-daemon.enable = true;
|
||
|
|
||
|
age.secrets.secret1.file = ../example/secret1.age;
|
||
|
|
||
|
environment.systemPackages = [testScript];
|
||
|
}
|