Files
lavitz/modules/home/session.nix
2026-02-11 21:15:34 -07:00

14 lines
244 B
Nix

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