feat(browsers): remove brave

This commit is contained in:
Felix Schröter 2023-04-09 21:29:45 +02:00
parent 7ee087e367
commit de4be9edca
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 2 additions and 10 deletions

View file

@ -1,8 +0,0 @@
{ config, pkgs, ... }:
{
programs.chromium = {
enable = true;
package = pkgs.brave;
};
}

View file

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./firefox.nix ./brave.nix ];
imports = [ ./firefox.nix ];
home.sessionVariables = { BROWSER = "firefox"; };
home.sessionVariables.BROWSER = "firefox";
}