mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
oh-my-posh: fix test under Darwin
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
@@ -15,15 +15,25 @@
|
||||
nushell = { };
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.config/nushell/env.nu
|
||||
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}"
|
||||
assertFileRegex \
|
||||
home-files/.config/nushell/env.nu \
|
||||
"${envFile}" \
|
||||
'/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
|
||||
assertFileExists "${configFile}"
|
||||
assertFileRegex \
|
||||
home-files/.config/nushell/config.nu \
|
||||
"${configFile}" \
|
||||
'source /.*/\.cache/oh-my-posh/init\.nu'
|
||||
'';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user