diff --git a/configs/packages.nix b/configs/packages.nix index d38236c..ee43117 100644 --- a/configs/packages.nix +++ b/configs/packages.nix @@ -43,6 +43,7 @@ in with pkgs; ] ++ [ # internet aria2 chromium + unstable.brave firefox tor-browser-bundle-bin thunderbird diff --git a/options.nix b/options.nix index 7662822..3e92fa1 100644 --- a/options.nix +++ b/options.nix @@ -2,6 +2,7 @@ with lib; with import ./theme.nix; let + unstable = import {}; stringOption = def: mkOption { type = types.string; default = def; }; themeOption = def: mkOption { type = types.submodule { @@ -15,7 +16,7 @@ let in { options.defaultApplications = mapAttrs (const stringOption) rec { terminal = "${pkgs.rxvt_unicode-with-plugins}/bin/urxvtc"; - browser = "${pkgs.chromium}/bin/chromium"; + browser = "${unstable.brave}/bin/brave"; fileManager = "${terminal} -e ${pkgs.ranger}/bin/ranger"; # locker = "${pkgs.i3lock}/bin/i3lock -u -c ${strings.removePrefix "#" colorScheme.background}"; locker = "${pkgs.lightlocker}/bin/light-locker-command -l";