1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00
nix-darwin/tests/system-shells.nix
2017-12-13 23:05:46 +01:00

11 lines
197 B
Nix

{ 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
'';
}