Files
lavitz/modules/home/session.nix

14 lines
236 B
Nix

{ config, ... }:
{
home.file."Assets" = {
source = ../../assets;
force = true;
};
home.sessionVariables = {
BROWSER = "librewolf";
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
};
}