mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
12 lines
254 B
Nix
12 lines
254 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
test = ''
|
||
|
echo >&2 "checking existance of /etc/ssh/ssh_known_hosts"
|
||
|
if test -e ${config.out}/etc/ssh/ssh_known_hosts; then
|
||
|
echo >&2 "/etc/ssh/ssh_known_hosts exists but it shouldn't!"
|
||
|
exit 1
|
||
|
fi
|
||
|
'';
|
||
|
}
|