1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-22 22:48:31 +02:00

carapace: add xgettext workaround

This commit is contained in:
Robert Helgesson 2023-09-13 23:35:19 +02:00
parent aed5ed979e
commit 5f5cb7a613
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -50,12 +50,14 @@ in {
'';
nushell = mkIf cfg.enableNushellIntegration {
# Note, the ${"$"} below is a work-around because xgettext otherwise
# interpret it as a Bash i18n string.
extraEnv = ''
let carapace_cache = "${config.xdg.cacheHome}/carapace"
if not ($carapace_cache | path exists) {
mkdir $carapace_cache
}
${bin} _carapace nushell | save -f $"($carapace_cache)/init.nu"
${bin} _carapace nushell | save -f ${"$"}"($carapace_cache)/init.nu"
'';
extraConfig = ''
source ${config.xdg.cacheHome}/carapace/init.nu