diff options
author | azahi <azat@bahawi.net> | 2025-01-01 13:10:32 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-01-01 13:10:32 +0300 |
commit | 7c06c0a354b106e37e26ddfc2bc6ba8336d90cc7 (patch) | |
tree | d52c7729b2aa8d81aaa18301d70877a6911a2167 /modules | |
parent | 2024-12-17 (diff) |
2025-01-01
Diffstat (limited to 'modules')
-rw-r--r-- | modules/common/ark.nix | 4 | ||||
-rw-r--r-- | modules/emacs/doom/config.el | 71 | ||||
-rw-r--r-- | modules/emacs/doom/init.el | 2 | ||||
-rw-r--r-- | modules/firefox/addons.json | 3 | ||||
-rw-r--r-- | modules/firefox/addons.nix | 302 | ||||
-rw-r--r-- | modules/firefox/default.nix | 1 | ||||
-rw-r--r-- | modules/firefox/userContent.css | 88 | ||||
-rw-r--r-- | modules/profiles/default.nix | 8 | ||||
-rw-r--r-- | modules/profiles/headful.nix | 2 |
9 files changed, 318 insertions, 163 deletions
diff --git a/modules/common/ark.nix b/modules/common/ark.nix index 007e209..f297fce 100644 --- a/modules/common/ark.nix +++ b/modules/common/ark.nix @@ -46,8 +46,8 @@ in config = lib.mkIf cfg.enable { environment.persistence.${cfg.path} = { hideMounts = true; - enableDebugging = false; - enableWarnings = false; + enableDebugging = true; + enableWarnings = true; inherit (cfg) directories files; }; diff --git a/modules/emacs/doom/config.el b/modules/emacs/doom/config.el index a212e17..be481d4 100644 --- a/modules/emacs/doom/config.el +++ b/modules/emacs/doom/config.el @@ -271,13 +271,14 @@ gptel-backend (gptel-make-ollama "ollama" :host "eonwe.shire.net:11434" :stream t - :models '(dagbs/qwen2.5-coder-7b-instruct-abliterated:latest - qwen2.5-coder:7b - deepseek-coder-v2:16b - codegemma:7b - codellama:7b - llama3.2:3b - mistral:7b)))) + :models '(qwen2.5-coder:32b-instruct-q3_K_M + qwen2.5-coder:14b-instruct-q8_0 + qwen2.5-coder:7b-instruct-fp16 + llama3.2:3b-instruct-fp16 + llama3.1:8b-instruct-fp16 + llama3:8b-instruct-fp16 + gemma:7b-instruct-q8_0 + mistral:7b-instruct-fp16)))) (use-package! ellama :init @@ -288,79 +289,61 @@ :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "llama3.2:3b" + :chat-model "llama3.2:3b-instruct-fp16" :embedding-model "nomic-embed-text:latest") ellama-providers '(("llama" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "llama3.2:3b" + :chat-model "llama3.2:3b-instruct-fp16" :embedding-model "nomic-embed-text:latest")) - ("codellama" . (make-llm-ollama - :scheme "http" - :host "eonwe.shire.net" - :port 11434 - :chat-model "codellama:7b" - :embedding-model "nomic-embed-text:latest")) ("qwen" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "qwen2.5:7b" + :chat-model "qwen2:7b-instruct-fp16" :embedding-model "nomic-embed-text:latest")) ("qwen-coder" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "qwen2.5-coder:7b" + :chat-model "qwen2.5-coder:14b-instruct-q8_0" :embedding-model "nomic-embed-text:latest")) - ("qwen-coder-instruct" . (make-llm-ollama - :scheme "http" - :host "eonwe.shire.net" - :port 11434 - :chat-model "dagbs/qwen2.5-coder-7b-instruct-abliterated:latest" - :embedding-model "nomic-embed-text:latest")) ("gemma" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "gemma2:9b" + :chat-model "gemma:7b-instruct-q8_0" :embedding-model "nomic-embed-text:latest")) - ("codegemma" . (make-llm-ollama + ("mistral" . (make-llm-ollama + :scheme "http" + :host "eonwe.shire.net" + :port 11434 + :chat-model "mistral:7b-instruct-fp16" + :embedding-model "nomic-embed-text:latest")) + ("opencoder" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "codegemma:7b" + :chat-model "opencoder:8b-instruct-fp16" :embedding-model "nomic-embed-text:latest")) - ("mistral" . (make-llm-ollama + ("granite" . (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "mistral:7b" - :embedding-model "nomic-embed-text:latest")) - ("hermes" . (make-llm-ollama - :scheme "http" - :host "eonwe.shire.net" - :port 11434 - :chat-model "hermes3:8b" - :embedding-model "nomic-embed-text:latest")) - ("deepseek" . (make-llm-ollama - :scheme "http" - :host "eonwe.shire.net" - :port 11434 - :chat-model "deepseek-coder-v2:16b" - :embedding-model "nomic-embed-text:latest"))) + :chat-model "granite3.1-moe:3b-instruct-fp16" + :embedding-model "granite-embedding:278m-fp16"))) ellama-translation-provider (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "qwen2.5:7b" + :chat-model "mistral:7b-instruct-fp16" :embedding-model "nomic-embed-text:latest") ellama-summarization-provider (make-llm-ollama :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "mistral:7b" + :chat-model "mistral:7b-instruct-fp16" :embedding-model "nomic-embed-text:latest"))) (use-package! magit-gptcommit @@ -371,7 +354,7 @@ :scheme "http" :host "eonwe.shire.net" :port 11434 - :chat-model "dagbs/qwen2.5-coder-7b-instruct-abliterated:latest" + :chat-model "qwen2.5-coder:32b-instruct-q3_K_M" :embedding-model "nomic-embed-text:latest")) (magit-gptcommit-status-buffer-setup)) diff --git a/modules/emacs/doom/init.el b/modules/emacs/doom/init.el index 3845fd6..51d4291 100644 --- a/modules/emacs/doom/init.el +++ b/modules/emacs/doom/init.el @@ -26,7 +26,7 @@ file-templates fold (format +onsave) - lispy + ;; lispy ;; multiple-cursors ;; objed parinfer diff --git a/modules/firefox/addons.json b/modules/firefox/addons.json index c194368..55919c3 100644 --- a/modules/firefox/addons.json +++ b/modules/firefox/addons.json @@ -10,6 +10,9 @@ "slug": "furiganaize" }, { + "slug": "indie-wiki-buddy" + }, + { "slug": "ipfs-companion" }, { diff --git a/modules/firefox/addons.nix b/modules/firefox/addons.nix index 5a08549..3bb23d2 100644 --- a/modules/firefox/addons.nix +++ b/modules/firefox/addons.nix @@ -5,10 +5,10 @@ { "bitwarden" = buildFirefoxXpiAddon { pname = "bitwarden"; - version = "2024.10.1"; + version = "2024.11.2"; addonId = "{446900e4-71c2-419f-a6a7-df9c091e268b}"; - url = "https://addons.mozilla.org/firefox/downloads/file/4371752/bitwarden_password_manager-2024.10.1.xpi"; - sha256 = "7b7357ddce2756dc536b86b5c14139ec09731c1c114ac82807c60fba3ced12a5"; + url = "https://addons.mozilla.org/firefox/downloads/file/4392295/bitwarden_password_manager-2024.11.2.xpi"; + sha256 = "38faecbfca76086a54e62b6e2036eae45e9d9f9f3aee4c7a72b652593f51b8e7"; meta = with lib; { homepage = "https://bitwarden.com"; description = "At home, at work, or on the go, Bitwarden easily secures all your passwords, passkeys, and sensitive information."; @@ -74,6 +74,264 @@ platforms = platforms.all; }; }; + "indie-wiki-buddy" = buildFirefoxXpiAddon { + pname = "indie-wiki-buddy"; + version = "3.11.1"; + addonId = "{cb31ec5d-c49a-4e5a-b240-16c767444f62}"; + url = "https://addons.mozilla.org/firefox/downloads/file/4379107/indie_wiki_buddy-3.11.1.xpi"; + sha256 = "2b63271fa42e3d46a683605f719de816195471ccd8654771606d6eb811f7596d"; + meta = with lib; { + homepage = "https://getindie.wiki/"; + description = "Helping you discover quality, independent wikis!\n\nWhen visiting a Fandom wiki, Indie Wiki Buddy redirects or alerts you of independent alternatives. It also filters search engine results. BreezeWiki is also supported, to reduce clutter on Fandom."; + license = licenses.mit; + mozPermissions = [ + "storage" + "webRequest" + "notifications" + "scripting" + "https://*.fandom.com/*" + "https://*.fextralife.com/*" + "https://*.neoseeker.com/*" + "https://breezewiki.com/*" + "https://antifandom.com/*" + "https://bw.artemislena.eu/*" + "https://breezewiki.catsarch.com/*" + "https://breezewiki.esmailelbob.xyz/*" + "https://breezewiki.frontendfriendly.xyz/*" + "https://bw.hamstro.dev/*" + "https://breeze.hostux.net/*" + "https://breezewiki.hyperreal.coffee/*" + "https://breeze.mint.lgbt/*" + "https://breezewiki.nadeko.net/*" + "https://nerd.whatever.social/*" + "https://breeze.nohost.network/*" + "https://z.opnxng.com/*" + "https://bw.projectsegfau.lt/*" + "https://breezewiki.pussthecat.org/*" + "https://bw.vern.cc/*" + "https://breeze.whateveritworks.org/*" + "https://breezewiki.woodland.cafe/*" + "https://*.bing.com/search*" + "https://search.brave.com/search*" + "https://*.duckduckgo.com/*" + "https://*.ecosia.org/*" + "https://kagi.com/search*" + "https://*.qwant.com/*" + "https://*.search.yahoo.com/*" + "https://*.startpage.com/*" + "https://*.ya.ru/*" + "https://*.yandex.az/*" + "https://*.yandex.by/*" + "https://*.yandex.co.il/*" + "https://*.yandex.com.am/*" + "https://*.yandex.com.ge/*" + "https://*.yandex.com.tr/*" + "https://*.yandex.com/*" + "https://*.yandex.ee/*" + "https://*.yandex.eu/*" + "https://*.yandex.fr/*" + "https://*.yandex.kz/*" + "https://*.yandex.lt/*" + "https://*.yandex.lv/*" + "https://*.yandex.md/*" + "https://*.yandex.ru/*" + "https://*.yandex.tj/*" + "https://*.yandex.tm/*" + "https://*.yandex.uz/*" + "https://www.google.com/search*" + "https://www.google.ad/search*" + "https://www.google.ae/search*" + "https://www.google.com.af/search*" + "https://www.google.com.ag/search*" + "https://www.google.com.ai/search*" + "https://www.google.al/search*" + "https://www.google.am/search*" + "https://www.google.co.ao/search*" + "https://www.google.com.ar/search*" + "https://www.google.as/search*" + "https://www.google.at/search*" + "https://www.google.com.au/search*" + "https://www.google.az/search*" + "https://www.google.ba/search*" + "https://www.google.com.bd/search*" + "https://www.google.be/search*" + "https://www.google.bf/search*" + "https://www.google.bg/search*" + "https://www.google.com.bh/search*" + "https://www.google.bi/search*" + "https://www.google.bj/search*" + "https://www.google.com.bn/search*" + "https://www.google.com.bo/search*" + "https://www.google.com.br/search*" + "https://www.google.bs/search*" + "https://www.google.bt/search*" + "https://www.google.co.bw/search*" + "https://www.google.by/search*" + "https://www.google.com.bz/search*" + "https://www.google.ca/search*" + "https://www.google.cd/search*" + "https://www.google.cf/search*" + "https://www.google.cg/search*" + "https://www.google.ch/search*" + "https://www.google.ci/search*" + "https://www.google.co.ck/search*" + "https://www.google.cl/search*" + "https://www.google.cm/search*" + "https://www.google.cn/search*" + "https://www.google.com.co/search*" + "https://www.google.co.cr/search*" + "https://www.google.com.cu/search*" + "https://www.google.cv/search*" + "https://www.google.com.cy/search*" + "https://www.google.cz/search*" + "https://www.google.de/search*" + "https://www.google.dj/search*" + "https://www.google.dk/search*" + "https://www.google.dm/search*" + "https://www.google.com.do/search*" + "https://www.google.dz/search*" + "https://www.google.com.ec/search*" + "https://www.google.ee/search*" + "https://www.google.com.eg/search*" + "https://www.google.es/search*" + "https://www.google.com.et/search*" + "https://www.google.fi/search*" + "https://www.google.com.fj/search*" + "https://www.google.fm/search*" + "https://www.google.fr/search*" + "https://www.google.ga/search*" + "https://www.google.ge/search*" + "https://www.google.gg/search*" + "https://www.google.com.gh/search*" + "https://www.google.com.gi/search*" + "https://www.google.gl/search*" + "https://www.google.gm/search*" + "https://www.google.gr/search*" + "https://www.google.com.gt/search*" + "https://www.google.gy/search*" + "https://www.google.com.hk/search*" + "https://www.google.hn/search*" + "https://www.google.hr/search*" + "https://www.google.ht/search*" + "https://www.google.hu/search*" + "https://www.google.co.id/search*" + "https://www.google.ie/search*" + "https://www.google.co.il/search*" + "https://www.google.im/search*" + "https://www.google.co.in/search*" + "https://www.google.iq/search*" + "https://www.google.is/search*" + "https://www.google.it/search*" + "https://www.google.je/search*" + "https://www.google.com.jm/search*" + "https://www.google.jo/search*" + "https://www.google.co.jp/search*" + "https://www.google.co.ke/search*" + "https://www.google.com.kh/search*" + "https://www.google.ki/search*" + "https://www.google.kg/search*" + "https://www.google.co.kr/search*" + "https://www.google.com.kw/search*" + "https://www.google.kz/search*" + "https://www.google.la/search*" + "https://www.google.com.lb/search*" + "https://www.google.li/search*" + "https://www.google.lk/search*" + "https://www.google.co.ls/search*" + "https://www.google.lt/search*" + "https://www.google.lu/search*" + "https://www.google.lv/search*" + "https://www.google.com.ly/search*" + "https://www.google.co.ma/search*" + "https://www.google.md/search*" + "https://www.google.me/search*" + "https://www.google.mg/search*" + "https://www.google.mk/search*" + "https://www.google.ml/search*" + "https://www.google.com.mm/search*" + "https://www.google.mn/search*" + "https://www.google.ms/search*" + "https://www.google.com.mt/search*" + "https://www.google.mu/search*" + "https://www.google.mv/search*" + "https://www.google.mw/search*" + "https://www.google.com.mx/search*" + "https://www.google.com.my/search*" + "https://www.google.co.mz/search*" + "https://www.google.com.na/search*" + "https://www.google.com.ng/search*" + "https://www.google.com.ni/search*" + "https://www.google.ne/search*" + "https://www.google.nl/search*" + "https://www.google.no/search*" + "https://www.google.com.np/search*" + "https://www.google.nr/search*" + "https://www.google.nu/search*" + "https://www.google.co.nz/search*" + "https://www.google.com.om/search*" + "https://www.google.com.pa/search*" + "https://www.google.com.pe/search*" + "https://www.google.com.pg/search*" + "https://www.google.com.ph/search*" + "https://www.google.com.pk/search*" + "https://www.google.pl/search*" + "https://www.google.pn/search*" + "https://www.google.com.pr/search*" + "https://www.google.ps/search*" + "https://www.google.pt/search*" + "https://www.google.com.py/search*" + "https://www.google.com.qa/search*" + "https://www.google.ro/search*" + "https://www.google.ru/search*" + "https://www.google.rw/search*" + "https://www.google.com.sa/search*" + "https://www.google.com.sb/search*" + "https://www.google.sc/search*" + "https://www.google.se/search*" + "https://www.google.com.sg/search*" + "https://www.google.sh/search*" + "https://www.google.si/search*" + "https://www.google.sk/search*" + "https://www.google.com.sl/search*" + "https://www.google.sn/search*" + "https://www.google.so/search*" + "https://www.google.sm/search*" + "https://www.google.sr/search*" + "https://www.google.st/search*" + "https://www.google.com.sv/search*" + "https://www.google.td/search*" + "https://www.google.tg/search*" + "https://www.google.co.th/search*" + "https://www.google.com.tj/search*" + "https://www.google.tl/search*" + "https://www.google.tm/search*" + "https://www.google.tn/search*" + "https://www.google.to/search*" + "https://www.google.com.tr/search*" + "https://www.google.tt/search*" + "https://www.google.com.tw/search*" + "https://www.google.co.tz/search*" + "https://www.google.com.ua/search*" + "https://www.google.co.ug/search*" + "https://www.google.co.uk/search*" + "https://www.google.com.uy/search*" + "https://www.google.co.uz/search*" + "https://www.google.com.vc/search*" + "https://www.google.co.ve/search*" + "https://www.google.vg/search*" + "https://www.google.co.vi/search*" + "https://www.google.com.vn/search*" + "https://www.google.vu/search*" + "https://www.google.ws/search*" + "https://www.google.rs/search*" + "https://www.google.co.za/search*" + "https://www.google.co.zm/search*" + "https://www.google.co.zw/search*" + "https://www.google.cat/search*" + ]; + platforms = platforms.all; + }; + }; "ipfs-companion" = buildFirefoxXpiAddon { pname = "ipfs-companion"; version = "3.1.0"; @@ -102,10 +360,10 @@ }; "languagetool" = buildFirefoxXpiAddon { pname = "languagetool"; - version = "8.11.8"; + version = "8.13.2"; addonId = "languagetool-webextension@languagetool.org"; - url = "https://addons.mozilla.org/firefox/downloads/file/4341696/languagetool-8.11.8.xpi"; - sha256 = "2f1489f7180303be730ff2b16d6a432d07017c6cffd3fbfc39f37dc809a25fc8"; + url = "https://addons.mozilla.org/firefox/downloads/file/4396724/languagetool-8.13.2.xpi"; + sha256 = "e8a93ca046df390aaafeb7ba86254505ed3c593371c1f9e5af6892018d12de66"; meta = with lib; { homepage = "https://languagetool.org"; description = "With this extension you can check text with the free style and grammar checker LanguageTool. It finds many errors that a simple spell checker cannot detect, like mixing up there/their, a/an, or repeating a word."; @@ -118,6 +376,7 @@ "https://*/*" "file:///*" "*://docs.google.com/document/*" + "*://docs.google.com/presentation/*" "*://languagetool.org/*" ]; platforms = platforms.all; @@ -125,30 +384,25 @@ }; "metamask" = buildFirefoxXpiAddon { pname = "metamask"; - version = "12.0.6"; + version = "12.6.2"; addonId = "webextension@metamask.io"; - url = "https://addons.mozilla.org/firefox/downloads/file/4342782/ether_metamask-12.0.6.xpi"; - sha256 = "a66e20bbe5ded1b9408420e4c2ffc82369cc3bfd27350afe25f2c0ef6b26ff3b"; + url = "https://addons.mozilla.org/firefox/downloads/file/4392249/ether_metamask-12.6.2.xpi"; + sha256 = "ca7b385559d7469ccca0454323f92f63d3aef5d68c504a46f818eb59bd735c74"; meta = with lib; { description = "Ethereum Browser Extension"; mozPermissions = [ "storage" "unlimitedStorage" "clipboardWrite" - "http://localhost:8545/" - "https://*.infura.io/" - "https://*.codefi.network/" - "https://*.cx.metamask.io/" - "https://chainid.network/chains.json" - "https://lattice.gridplus.io/*" + "http://*/*" + "https://*/*" "activeTab" "webRequest" + "webRequestBlocking" "*://*.eth/" "notifications" "file://*/*" - "http://*/*" - "https://*/*" - "*://connect.trezor.io/*/popup.html" + "*://connect.trezor.io/*/popup.html*" ]; platforms = platforms.all; }; @@ -290,10 +544,10 @@ }; "ublock-origin" = buildFirefoxXpiAddon { pname = "ublock-origin"; - version = "1.61.0"; + version = "1.61.2"; addonId = "uBlock0@raymondhill.net"; - url = "https://addons.mozilla.org/firefox/downloads/file/4382536/ublock_origin-1.61.0.xpi"; - sha256 = "e6fd55b799a568c66c10892a8f22428e6773fe16d7466ce9dee2952f224b203d"; + url = "https://addons.mozilla.org/firefox/downloads/file/4391011/ublock_origin-1.61.2.xpi"; + sha256 = "ee3a724a46ff32c17d1723077fecc6ede7fdab742154020b51fb6253ddcbba14"; meta = with lib; { homepage = "https://github.com/gorhill/uBlock#ublock-origin"; description = "Finally, an efficient wide-spectrum content blocker. Easy on CPU and memory."; @@ -350,10 +604,10 @@ }; "violentmonkey" = buildFirefoxXpiAddon { pname = "violentmonkey"; - version = "2.28.0"; + version = "2.29.0"; addonId = "{aecec67f-0d10-4fa7-b7c7-609a2db280cf}"; - url = "https://addons.mozilla.org/firefox/downloads/file/4379821/violentmonkey-2.28.0.xpi"; - sha256 = "30bc3db14194a5197e4721d419123f3a02b9c6f3e94646724aa991137121bcba"; + url = "https://addons.mozilla.org/firefox/downloads/file/4398029/violentmonkey-2.29.0.xpi"; + sha256 = "2edf39a824476b8a77a57c7c3abdaf3f685a679486e47450fab837b4bd71d469"; meta = with lib; { homepage = "https://violentmonkey.github.io/"; description = "Userscript support for browsers, open source."; diff --git a/modules/firefox/default.nix b/modules/firefox/default.nix index ee45434..69324b7 100644 --- a/modules/firefox/default.nix +++ b/modules/firefox/default.nix @@ -104,6 +104,7 @@ in [ consent-o-matic furiganaize + indie-wiki-buddy languagetool metamask no-pdf-download diff --git a/modules/firefox/userContent.css b/modules/firefox/userContent.css index a009ad8..f068f20 100644 --- a/modules/firefox/userContent.css +++ b/modules/firefox/userContent.css @@ -248,39 +248,6 @@ } } -@-moz-document regexp("https?://.*\.fandom\.com/wiki/.*") -{ - :root { - --theme-body-background-image-full: none !important; - --theme-body-background-image-desktop: none !important; - --theme-body-background-image-large-desktop: none !important; - } - - #WikiaBar, - #highlight__main-container, - .global-footer, - .global-navigation, - .global-registration-buttons, - .notifications-placeholder { - display: none !important; - } - - .main-container, - body { - background-image: none !important; - background: none !important; - } - - .main-container { - margin-left: none !important; - width: auto !important; - } - - .fandom-sticky-header { - left: 0px !important; - } -} - @-moz-document regexp("https?:\/\/gog\.com.*") { .galaxy-section-wrapper, footer { @@ -306,26 +273,6 @@ } } -@-moz-document regexp("https?://www\.songsterr\.com.*") -{ - #favorite, - #fullscreen, - #logo, - #menu-favorites, - #menu-help, - #menu-plus, - #menu-signin, - #menu-submit, - #promo, - #revisions, - #showroom, - #showroom_sidebar, - #text-showroom, - footer { - display: none !important; - } -} - @-moz-document regexp("https?://developer\.mozilla\.org.*") { #nav-footer, @@ -346,41 +293,6 @@ } } -@-moz-document regexp("https?://(.*\.)?wikipedia\.org/wiki/.*") -{ - #footer, - #mp-topbanner, - #siteNotice, - #siteSub, - #wmde-banner-app, - .mw-footer-container, - .mw-header, - .vector-page-toolbar { - display: none !important; - } - - html, - body { - font-family: var(--sans-serif-font-family) !important; - font-size: var(--sans-serif-font-size) !important; - } - - .k-player, - body.mediawiki, - #dialogEngineContainer #dialogEngineDialog { - background: inherit !important; - } -} - -@-moz-document regexp("https?://open-vsx\.org.*") -{ - MuiCollapse-container, - cc-window.cc-banner, - footer { - display: none !important; - } -} - @-moz-document regexp("https?://duckduckgo\.com.*") { .badge-link, /* Annoying DuckDuckGo extension ads. */ diff --git a/modules/profiles/default.nix b/modules/profiles/default.nix index ae03bcc..34093d0 100644 --- a/modules/profiles/default.nix +++ b/modules/profiles/default.nix @@ -29,13 +29,13 @@ in } ]; - ark.directories = [ "/var/log" ]; + ark.directories = [ + "/var/lib/nixos" + "/var/log" + ]; nixfiles.modules = { - bat.enable = true; - eza.enable = true; htop.enable = true; - tmux.enable = true; vim.enable = true; }; diff --git a/modules/profiles/headful.nix b/modules/profiles/headful.nix index e2ed1df..991d513 100644 --- a/modules/profiles/headful.nix +++ b/modules/profiles/headful.nix @@ -21,9 +21,11 @@ in alacritty.enable = mkDefault true; aria2.enable = true; + bat.enable = true; chromium.enable = true; dwm.enable = mkDefault false; emacs.enable = true; + eza.enable = true; firefox.enable = true; foot.enable = mkDefault true; kde.enable = mkDefault true; |