writeTextFile -> builtins.writeTextFile

This commit is contained in:
niten 2021-10-15 15:18:50 -07:00
parent 3bf763c124
commit 7ea906162e

View File

@ -10,7 +10,7 @@ let
concatLists = lsts: concatMap (i: i) lsts;
gen-sshfp-records-pkg = hostname: pubkey: let
pubkey-file = writeTextFile {
pubkey-file = builtins.writeTextFile {
name = "${hostname}-initrd-ssh-pubkey";
text = pubkey;
};