diff --git a/modules/programs/keychain.nix b/modules/programs/keychain.nix index 419c116a9..61ab48238 100644 --- a/modules/programs/keychain.nix +++ b/modules/programs/keychain.nix @@ -87,6 +87,14 @@ in { ''; }; + enableNushellIntegration = mkOption { + default = true; + type = types.bool; + description = '' + Whether to enable Nushell integration. + ''; + }; + enableXsessionIntegration = mkOption { default = true; type = types.bool; @@ -108,6 +116,9 @@ in { programs.zsh.initExtra = mkIf cfg.enableZshIntegration '' eval "$(SHELL=zsh ${shellCommand})" ''; + programs.nushell.extraConfig = mkIf cfg.enableNushellIntegration '' + ${shellCommand} | parse -r '(\w+)=(.*); export \1' | transpose -ird | load-env + ''; xsession.initExtra = mkIf cfg.enableXsessionIntegration '' eval "$(${shellCommand})" '';