From c7187e25093f5400921bcd43de139e3746df06d8 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sat, 16 Nov 2024 19:34:21 -0500 Subject: [PATCH] remove `firefox` --- nixos/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index a63472e..80bd7ae 100755 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -86,7 +86,8 @@ }; # Install firefox. - programs.firefox.enable = true; + # We disable this because we're using zen-browser in the flake.nix + programs.firefox.enable = false; # Allow unfree packages nixpkgs.config.allowUnfree = true;