7 lines
127 B
Nix
7 lines
127 B
Nix
{ runCommand, ... }:
|
|
|
|
runCommand "fem-ssh-known-hosts" {} ''
|
|
mkdir -p $out
|
|
cp ${./fem-ssh-known-hosts} $out/known_hosts
|
|
''
|