nixos-config/home/default.nix
Antoine Martin 04fa72f108 home: set BROWSER variable
If it can help troubleshoot some link problems, let's set it just in
case, for future me
2022-10-04 23:38:02 +02:00

32 lines
439 B
Nix

{...}: {
imports = [
./alacritty.nix
./bat.nix
./emacs.nix
./env.nix
./firefox.nix
./fish
./flameshot.nix
./git.nix
./gtk.nix
./laptop.nix
./lorri.nix
./mail.nix
./rbw.nix
./rofi.nix
./ssh.nix
./themes
./tmux.nix
./tridactyl.nix
./x
];
home.stateVersion = "21.05";
home.username = "alarsyo";
home.sessionVariables = {
BROWSER = "firefox";
};
}