about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2024-08-14 01:47:11 +0300
committerAzat Bahawi <azat@bahawi.net>2024-08-14 01:47:11 +0300
commitaa5565629845644050f19b1bbc1f03b0a0a66aa7 (patch)
treef0f57f893d5914a3c2aa292b3755284b593025e7 /modules
parent2024-08-09 (diff)
2024-08-14
Diffstat (limited to '')
-rw-r--r--modules/common/nix.nix10
-rw-r--r--modules/firefox/userContent.css8
-rw-r--r--modules/mpv.nix2
-rw-r--r--modules/profiles/email.nix4
-rw-r--r--modules/vscode.nix7
5 files changed, 14 insertions, 17 deletions
diff --git a/modules/common/nix.nix b/modules/common/nix.nix
index efd06bd..d1f835c 100644
--- a/modules/common/nix.nix
+++ b/modules/common/nix.nix
@@ -70,14 +70,6 @@ in
 
           keep-going = true;
 
-          substituters = [
-            "https://azahi.cachix.org"
-            "https://nix-community.cachix.org"
-          ];
-
-          trusted-substituters = [ "https://azahi.cachix.org" ];
-          trusted-public-keys = [ "azahi.cachix.org-1:2bayb+iWYMAVw3ZdEpVg+NPOHCXncw7WMQ0ElX1GO3s=" ];
-
           trusted-users = [
             "root"
             my.username
@@ -90,6 +82,8 @@ in
             "flakes"
             "nix-command"
             "recursive-nix"
+            # "configurable-impure-env"
+            # "pipe-operators"
           ];
         };
       };
diff --git a/modules/firefox/userContent.css b/modules/firefox/userContent.css
index df0124a..d912e5b 100644
--- a/modules/firefox/userContent.css
+++ b/modules/firefox/userContent.css
@@ -255,6 +255,12 @@
 
 @-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,
@@ -266,7 +272,7 @@
   .main-container,
   body {
     background-image: none !important;
-    backgrounde: none !important;
+    background: none !important;
   }
 
   .main-container {
diff --git a/modules/mpv.nix b/modules/mpv.nix
index 90d46d9..467dc94 100644
--- a/modules/mpv.nix
+++ b/modules/mpv.nix
@@ -103,7 +103,7 @@ in
         scripts = with pkgs.mpvScripts; [
           autoload
           mpv-cheatsheet
-          mpv-webm
+          mpv-webm # FIXME https://nixpk.gs/pr-tracker.html?pr=333779
           sponsorblock
           thumbfast
           uosc
diff --git a/modules/profiles/email.nix b/modules/profiles/email.nix
index e7816dc..4c8d6eb 100644
--- a/modules/profiles/email.nix
+++ b/modules/profiles/email.nix
@@ -78,10 +78,8 @@ in
               signature = {
                 showSignature = "append";
                 text = ''
-                  Firstname Lastname | Firstname Lastname | https://azahi.cc/
-
                   Please consider using plain text when replying!
-                    ~~ https://useplaintext.email/#etiquette ~~
+                  ~    https://useplaintext.email/#etiquette    ~
                 '';
               };
               gpg = {
diff --git a/modules/vscode.nix b/modules/vscode.nix
index bd840d8..586a817 100644
--- a/modules/vscode.nix
+++ b/modules/vscode.nix
@@ -53,7 +53,7 @@ in
               github.vscode-pull-request-github
               gitlab.gitlab-workflow
               golang.go
-              graphql.vscode-graphql
+              # graphql.vscode-graphql
               graphql.vscode-graphql-execution
               graphql.vscode-graphql-syntax
               hashicorp.hcl
@@ -72,12 +72,11 @@ in
               signageos.signageos-vscode-sops
               skellock.just
               streetsidesoftware.code-spell-checker
-              streetsidesoftware.code-spell-checker-british-english
               streetsidesoftware.code-spell-checker-russian
               streetsidesoftware.code-spell-checker-scientific-terms
               tamasfe.even-better-toml
-              task.vscode-task
-              vscode-org-mode.org-mode
+              # task.vscode-task
+              # vscode-org-mode.org-mode
               ziglang.vscode-zig
             ]
             ++ optional cfg.vim.enable vscodevim.vim;

Consider giving Nix/NixOS a try! <3