overlays: add convenience file for builds
This commit is contained in:
parent
16ac9ae637
commit
dddce20c7f
2
.github/workflows/cachix.yml
vendored
2
.github/workflows/cachix.yml
vendored
|
@ -18,4 +18,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: alarsyo
|
name: alarsyo
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
- run: nix-build -E 'let pkgs = import <nixpkgs> { overlays = import ./overlays; }; in with pkgs; [ bitwarden_rs-postgresql bitwarden_rs-vault ]'
|
- run: nix-build ./overlays/build-me.nix
|
||||||
|
|
8
overlays/build-me.nix
Normal file
8
overlays/build-me.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# File used in GitHub workflow to build my overlays
|
||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> { overlays = import ./.; };
|
||||||
|
in
|
||||||
|
with pkgs; [
|
||||||
|
bitwarden_rs-postgresql
|
||||||
|
bitwarden_rs-vault
|
||||||
|
]
|
Loading…
Reference in a new issue