summaryrefslogtreecommitdiff
path: root/users/seth/module/programs/chromium.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/module/programs/chromium.nix')
-rw-r--r--users/seth/module/programs/chromium.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/users/seth/module/programs/chromium.nix b/users/seth/module/programs/chromium.nix
deleted file mode 100644
index 5c44dec..0000000
--- a/users/seth/module/programs/chromium.nix
+++ /dev/null
@@ -1,35 +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;
- };
- };
-
- config = lib.mkIf cfg.enable {
- programs.chromium = {
- enable = true;
-
- dictionaries = [pkgs.hunspellDictsChromium.en_US];
-
- extensions = [
- # ublock origin
- {id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";}
- # bitwarden
- {id = "nngceckbapebfimnlniiiahkandclblb";}
- # floccus bookmark sync
- {id = "fnaicdffflnofjppbagibeoednhnbjhg";}
- # tabby cat
- {id = "mefhakmgclhhfbdadeojlkbllmecialg";}
- ];
- };
- };
-}