1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/programs/oh-my-posh/zsh.nix

25 lines
357 B
Nix
Raw Normal View History

2022-09-29 13:08:53 +02:00
{ ... }:
{
programs = {
zsh.enable = true;
oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};
test.stubs = {
oh-my-posh = { };
zsh = { };
};
nmt.script = ''
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
'/bin/oh-my-posh init zsh --config'
'';
}