dotfiles/nixos/overlays/yubikey-touch-shitpost/default.nix
2024-11-07 16:25:41 -07:00

22 lines
324 B
Nix

#
# Be gay. Do puck(ification).
#
{ ... }:
let
overlay = (
self: super: {
# UwU.
yubikey-touch-detector = super.yubikey-touch-detector.overrideAttrs (
finalAttrs: previousAttrs: {
patches = [ ./00-puckify.patch ];
}
);
}
);
in
{
nixpkgs.overlays = [ overlay ];
}