too much shit idek anymore

This commit is contained in:
blahai 2025-01-26 00:36:34 +02:00
parent 14843ef945
commit bc82345beb
No known key found for this signature in database
63 changed files with 1759 additions and 346 deletions

View file

@ -0,0 +1,5 @@
# this file creates an overlay based on the packgaes that out flake provides
{self, ...}: {
# get a list of packages for the host system, and if none exist use an empty set
flake.overlays.default = _: prev: self.packages.${prev.stdenv.hostPlatform.system} or {};
}