1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/tests/system-shells.nix

11 lines
197 B
Nix
Raw Permalink Normal View History

2017-12-13 22:05:46 +00:00
{ config, pkgs, ... }:
{
environment.shells = [ pkgs.zsh ];
test = ''
echo checking zsh in /etc/shells >&2
grep '/run/current-system/sw/bin/zsh' ${config.out}/etc/shells
'';
}