1
0

flake.nix: Centralize overlays

This commit is contained in:
2024-05-13 16:05:48 +02:00
parent c2062145b0
commit 9210767036
4 changed files with 37 additions and 22 deletions

14
flake/overlay.nix Normal file
View File

@@ -0,0 +1,14 @@
{ self
, bij
, chaosevents
, ssh-to-age
, ...
}@inputs:
final: prev: {
inherit (bij.packages.${final.system})
bij;
inherit (chaosevents.packages.${final.system})
chaosevents;
inherit (ssh-to-age.packages.${final.system})
ssh-to-age;
}