(T)im's N(ix) Flake, Multi-Host Configurations for all of my machines! 74k1.sh/
nixos nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(waterfox): update hash & some css stuff

74k1 9eaf037c ad17c560

+71 -1
+71 -1
modules/home-manager/apps/waterfox/default.nix
··· 27 27 28 28 programs.waterfox = { 29 29 enable = true; 30 - package = inputs.hythera-waterfox.outputs.legacyPackages.${pkgs.stdenv.hostPlatform.system}.waterfox; 30 + package = inputs.hythera-waterfox.outputs.legacyPackages.${pkgs.stdenv.hostPlatform.system}.waterfox.overrideAttrs (oldAttrs: let 31 + src = pkgs.fetchFromGitHub { 32 + owner = "BrowserWorks"; 33 + repo = "Waterfox"; 34 + tag = "6.6.10"; 35 + hash = "sha256-hYIci/tT8coo+qxngTQjOjGFY+ztSfT1BNVkULdRw3k="; 36 + fetchSubmodules = true; 37 + preFetch = '' 38 + export GIT_CONFIG_COUNT=1 39 + export GIT_CONFIG_KEY_0=url.https://github.com/.insteadOf 40 + export GIT_CONFIG_VALUE_0=git@github.com: 41 + ''; # We can't clone with SSH here 42 + }; 43 + in { 44 + inherit src; 45 + }); 31 46 profiles.taki = { 32 47 name = "taki"; 33 48 search = { ··· 190 205 box-shadow: none !important; 191 206 } 192 207 } 208 + 209 + @-moz-document url("about:newtab"), url("about:home") { 210 + body { 211 + margin: 0 !important; 212 + min-height: 100vh !important; 213 + background: #07060B !important; 214 + color: #323246 !important; 215 + } 216 + 217 + .outer-wrapper, 218 + .outer-wrapper.ds-outer-wrapper-breakpoint-override, 219 + main, 220 + .top-site-outer, 221 + .top-sites-list, 222 + .search-wrapper, 223 + .logo-and-wordmark, 224 + .weather, 225 + .personalize-button, 226 + .personalize-button-wrapper, 227 + .discovery-stream, 228 + .body-wrapper, 229 + .customize-menu, 230 + .homepage-context-menu-button, 231 + .topic, 232 + .section, 233 + .non-collapsible-section, 234 + .collapsible-section, 235 + .fixed-search, 236 + .home-section { 237 + display: none !important; 238 + } 239 + 240 + body::before { 241 + content: "♡ ╱|、 ?\A (˚ˎ。7\A |、˜〵\A じしˍ,)ノ"; 242 + white-space: pre; 243 + position: fixed; 244 + top: 50%; 245 + left: 50%; 246 + transform: translate(-50%, -50%); 247 + display: block; 248 + margin: 0; 249 + padding: 0; 250 + background: transparent !important; 251 + color: #323246 !important; 252 + font-family: "PP Supply Mono", "Iosevka", "JetBrains Mono", monospace !important; 253 + font-size: 2em !important; 254 + line-height: 1.2 !important; 255 + text-align: left; 256 + pointer-events: none; 257 + z-index: 2147483647; 258 + } 259 + } 193 260 ''; 194 261 settings = { 195 262 # ------------------------------------------- # ··· 201 268 202 269 "browser.display.background_color.dark" = "#FFFFFF"; 203 270 "browser.display.document_color_use" = 0; 271 + 272 + # enable word-clicks 273 + "browser.urlbar.doubleClickSelectsAll" = false; 204 274 205 275 # disable new sidebar 206 276 "sidebar.revamp" = false;