From b44f200102b752bd2f4f18142ca1d4d6ab363dd2 Mon Sep 17 00:00:00 2001 From: Odweta Date: Mon, 19 Jan 2026 17:08:55 +0100 Subject: [PATCH] remove chromium and use gnome's built-in browser for the web --- modules/apps/default.nix | 1 - modules/apps/ungoogled-chromium.nix | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 modules/apps/ungoogled-chromium.nix diff --git a/modules/apps/default.nix b/modules/apps/default.nix index 2784d88..5388a49 100644 --- a/modules/apps/default.nix +++ b/modules/apps/default.nix @@ -4,7 +4,6 @@ imports = [ ./qbittorrent.nix ./steam.nix - ./ungoogled-chromium.nix ./wine.nix ]; } diff --git a/modules/apps/ungoogled-chromium.nix b/modules/apps/ungoogled-chromium.nix deleted file mode 100644 index 50bdcd4..0000000 --- a/modules/apps/ungoogled-chromium.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - environment.systemPackages = with pkgs; [ - ungoogled-chromium - ]; -}