summaryrefslogtreecommitdiff
path: root/users/seth/programs/chromium.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/chromium.nix')
-rw-r--r--users/seth/programs/chromium.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/users/seth/programs/chromium.nix b/users/seth/programs/chromium.nix
deleted file mode 100644
index 31b1988..0000000
--- a/users/seth/programs/chromium.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-let
- cfg = config.seth.programs.chromium;
-in
-{
- options.seth.programs.chromium = {
- enable = lib.mkEnableOption "Chromium configuration" // {
- default = config.seth.desktop.enable;
- defaultText = lib.literalExpression "config.seth.desktop.enable";
- };
- };
-
- config = lib.mkIf cfg.enable {
- catppuccin.chromium.enable = false;
-
- programs.chromium = {
- enable = true;
-
- dictionaries = [ pkgs.hunspellDictsChromium.en_US ];
-
- extensions = [
- # uBlock Origin Lite
- { id = "ddkjiahejlhfcafbddmgiahcphecmpfh"; }
- # Bitwarden
- { id = "nngceckbapebfimnlniiiahkandclblb"; }
- # Floccus Bookmark Sync
- { id = "fnaicdffflnofjppbagibeoednhnbjhg"; }
- # Tabby Cat
- { id = "mefhakmgclhhfbdadeojlkbllmecialg"; }
- # Startpage
- { id = "fgmjlmbojbkmdpofahffgcpkhkngfpef"; }
- ];
- };
- };
-}