Add chromium as backup browser, remove firefox

This commit is contained in:
Evie Litherland-Smith 2024-01-08 17:42:34 +00:00
parent 7c47ada31e
commit 826b4dc9ca
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ chromium ];
programs.chromium = rec {
enable = true;
defaultSearchProviderEnabled = true;

View file

@ -1,6 +1,5 @@
{ pkgs, ... }: {
imports =
[ ./desktop.nix ./emacs.nix ./nyxt.nix ./firefox.nix ./chromium.nix ];
imports = [ ./desktop.nix ./emacs.nix ./nyxt.nix ./chromium.nix ];
nixpkgs.config.chromium.commandLineArgs =
"--enable-features=UseOzonePlatform --ozone-platform=wayland";
environment = {