mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nix-repo.git
synced 2024-11-22 04:01:27 +00:00
pkgs | ||
default.nix | ||
opentabletdriver.nix | ||
README.md |
nix-overlay
Nix-Overlay, a combo of my gitlab repo and tdeo's repo while updated
- OpenTabletDriver add
{ config, lib, pkgs, ... }:
let
rev-overlay = "master";
url-overlay = "https://github.com/cidkidnix/nix-overlay/archive/${rev-overlay}.tar.gz";
nix-overlay-modules = builtins.fetchTarball url-overlay;
nix-overlay = (import (builtins.fetchTarball url-overlay));
in
to the top of your configuration.nix then add
{
imports = [
...
"${nix-overlay-modules}/opentabletdriver.nix"
];
nixpkgs.overlays = [ (nix-overlay) ];
environment.systemPackages = with pkgs; [ opentabletdriver ];
}