1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-10 15:18:43 +02:00
home-manager/tests/modules/programs/oh-my-posh/nushell.nix

40 lines
890 B
Nix
Raw Normal View History

2023-12-28 23:07:47 +01:00
{ pkgs, ... }:
2023-11-15 10:44:42 +01:00
{
programs = {
nushell.enable = true;
oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};
test.stubs = {
oh-my-posh = { };
nushell = { };
};
2023-12-28 23:07:47 +01:00
nmt.script = let
configFile = if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support/nushell/config.nu"
else
"home-files/.config/nushell/config.nu";
envFile = if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support/nushell/env.nu"
else
"home-files/.config/nushell/env.nu";
in ''
assertFileExists "${envFile}"
2023-11-15 10:44:42 +01:00
assertFileRegex \
2023-12-28 23:07:47 +01:00
"${envFile}" \
2023-11-15 10:44:42 +01:00
'/bin/oh-my-posh init nu --config .*--print \| save --force /.*/home-files/\.cache/oh-my-posh/init\.nu'
2023-12-28 23:07:47 +01:00
assertFileExists "${configFile}"
2023-11-15 10:44:42 +01:00
assertFileRegex \
2023-12-28 23:07:47 +01:00
"${configFile}" \
2023-11-15 10:44:42 +01:00
'source /.*/\.cache/oh-my-posh/init\.nu'
'';
}