Nix overlay with releases of SelfPrivacy API
Go to file
Illia Chub 2e0bbfff8e
Initial commit
2021-11-17 14:31:52 +02:00
pkgs Initial commit 2021-11-17 14:31:52 +02:00
README.md Initial commit 2021-11-17 14:31:52 +02:00
default.nix Initial commit 2021-11-17 14:31:52 +02:00
opentabletdriver.nix Initial commit 2021-11-17 14:31:52 +02:00

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 ];
}