This commit is contained in:
dolphinau 2025-11-23 21:35:33 +01:00
parent 42274e7d2c
commit c529e3f6e9
No known key found for this signature in database
6 changed files with 143 additions and 22 deletions

View file

@ -1 +1,26 @@
# secret-santa
# secret-santa
## Add command to nixos
```nix
{ pkgs ? import <nixpkgs> { } }:
let
secret-santa =
let
defaultNix = builtins.fetchurl {
url = "https://raw.githubusercontent.com/dolphinau/secret-santa/refs/heads/main/default.nix";
sha256 = "1sihdgsg84kprycsg102rj9qnwd97zwx17x2wn42q4rmn918wvvx";
};
in pkgs.callPackage defaultNix {
src = pkgs.fetchFromGitHub {
owner = "dolphinau";
repo = "secret-santa";
rev = "a9b1f880d2fa50dbdff03a51b582deacb0972d90";
sha256 = "sha256-v/fvJAlnMxMjlP6Z1cgHyKfno79yRSpKwY7pF0irISA=";
};
};
in [
secret-santa
]
```