This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://benjeffrey.com/greasemonkey-script-for-wikipedia-subheading-links | |
// Available under the MPL 2.0 | |
// ==UserScript== | |
// @key value | |
// @name Wikipedia Subheading Links | |
// @namespace com.benjeffrey.wikipedia-subheading-links | |
// @description Add links to subheadings on Wikipedia pages. | |
// @include http://*.wikipedia.org/* | |
// @include https://*.wikipedia.org/* | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
services.displayManager.extraSessionFilePackages = | |
let gnome-flashback-xmonad = {wmName, wmLabel, wmCommand}: pkgs.callPackage ({ stdenv, gnome3, bash, haskellPackages, glib, wrapGAppsHook }: stdenv.mkDerivation { | |
name = "gnome-flashback-${wmName}"; | |
buildInputs = [ gnome3.gnome-flashback gnome3.gnome-panel bash haskellPackages.xmonad glib ]; | |
nativeBuildInputs = [ wrapGAppsHook ]; | |
unpackPhase = "true"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ cmake | |
, fetchFromGitHub | |
, lib | |
, libclang | |
, clang | |
, openssl | |
, olm | |
, glibc | |
, pkg-config | |
, rustPlatform |