Files
lavitz/modules/home/session.nix
2026-02-15 22:35:58 -07:00

13 lines
166 B
Nix

{ config, ... }:
{
home.file."Assets" = {
source = ../../assets;
force = true;
};
systemd.user.sessionVariables = {
BROWSER = "librewolf";
};
}