at 23.05-pre 392 B view raw
1import ./make-test-python.nix ({ pkgs, ... }: { 2 name = "oh-my-zsh"; 3 4 nodes.machine = { pkgs, ... }: 5 6 { 7 programs.zsh = { 8 enable = true; 9 ohMyZsh.enable = true; 10 }; 11 }; 12 13 testScript = '' 14 start_all() 15 machine.succeed("touch ~/.zshrc") 16 machine.succeed("zsh -c 'source /etc/zshrc && echo $ZSH | grep oh-my-zsh-${pkgs.oh-my-zsh.version}'") 17 ''; 18})