mirror of
https://github.com/nix-community/home-manager
synced 2024-11-11 05:39:44 +01:00
30 lines
635 B
Nix
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'
|
||
|
'';
|
||
|
}
|