diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-13 04:40:56 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-13 04:40:56 +0100 |
commit | e64fb915a0f4eb8f7e0f9565f4263749e581d524 (patch) | |
tree | 3c091c52d68c111faccaeb385dcea372ce95db05 /custom | |
parent | 630255f31a84622dd6185effbb5c8504d426670c (diff) | |
download | nixos-e64fb915a0f4eb8f7e0f9565f4263749e581d524.tar nixos-e64fb915a0f4eb8f7e0f9565f4263749e581d524.tar.gz nixos-e64fb915a0f4eb8f7e0f9565f4263749e581d524.tar.bz2 nixos-e64fb915a0f4eb8f7e0f9565f4263749e581d524.tar.xz nixos-e64fb915a0f4eb8f7e0f9565f4263749e581d524.zip |
syntax
Diffstat (limited to 'custom')
-rw-r--r-- | custom/simp_le.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/custom/simp_le.nix b/custom/simp_le.nix index ee93d2c4..8178bb1a 100644 --- a/custom/simp_le.nix +++ b/custom/simp_le.nix | |||
@@ -2,6 +2,7 @@ | |||
2 | , simp_le | 2 | , simp_le |
3 | , lib | 3 | , lib |
4 | , stdenv | 4 | , stdenv |
5 | , writeText | ||
5 | }: | 6 | }: |
6 | 7 | ||
7 | let | 8 | let |
@@ -9,4 +10,4 @@ let | |||
9 | echo ${domain} >> /tmp/domains.test | 10 | echo ${domain} >> /tmp/domains.test |
10 | ''; | 11 | ''; |
11 | all = "#!${stdenv}/bin/bash\n\n" + lib.concatMapStringsSep "\n" getcert domains; | 12 | all = "#!${stdenv}/bin/bash\n\n" + lib.concatMapStringsSep "\n" getcert domains; |
12 | in pkgs.writeText "certs.sh" all | 13 | in writeText "certs.sh" all |