9 lines
160 B
Nix
9 lines
160 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home.sessionVariables = {
|
|
BROWSER = "librewolf";
|
|
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
|
|
};
|
|
}
|