Skip to content

Instantly share code, notes, and snippets.

View Drainful's full-sized avatar
🖥️
Enjoying computers

Adrian Fullmer Drainful

🖥️
Enjoying computers
View GitHub Profile
@lukateras
lukateras / default.nix
Last active October 26, 2019 09:39
Pleroma derivation that leverages http://gitlab.com/transumption/mix-to-nix
with import <nixpkgs> {};
let
inherit (callPackage (fetchGit {
url = https://gitlab.com/transumption/mix-to-nix;
rev = "b70cb8f7fca80d0c5f7539dbfec497535e07d75c";
}) {}) mixToNix;
# Fake config, required for compilation
prodSecret = writeText "prod.secret.exs" ''
@roghnin
roghnin / 70-synaptics.conf
Last active January 7, 2023 16:48
/etc/X11/xorg.conf.d/70-synaptics.conf
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"