1
0
mirror of https://github.com/nix-community/home-manager synced 2024-09-12 06:16:33 +02:00
home-manager/tests/modules/programs/oh-my-posh/nushell.nix
2023-12-25 19:01:13 +01:00

30 lines
635 B
Nix

{ ... }:
{
programs = {
nushell.enable = true;
oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};
test.stubs = {
oh-my-posh = { };
nushell = { };
};
nmt.script = ''
assertFileExists home-files/.config/nushell/env.nu
assertFileRegex \
home-files/.config/nushell/env.nu \
'/bin/oh-my-posh init nu --config .*--print \| save --force /.*/home-files/\.cache/oh-my-posh/init\.nu'
assertFileExists home-files/.config/nushell/config.nu
assertFileRegex \
home-files/.config/nushell/config.nu \
'source /.*/\.cache/oh-my-posh/init\.nu'
'';
}