nixos-config/home/shell/default.nix
Felix Schröter 0bf8a6b336
feat(browsers): add mullvad-browser
Adds Mullvad Browser & sets it as the new default browser.
2023-04-12 21:06:32 +02:00

19 lines
262 B
Nix

{ config, pkgs, ... }:
{
imports = [
./bash.nix
./zsh.nix
./nushell.nix
./starship.nix
./kitty.nix
./direnv.nix
];
programs.fzf = { enable = true; };
home.file."dev/work/.env".text = ''
BROWSER=mullvad-browser-work
'';
}