refactor: split up overlays

This commit is contained in:
Moritz Böhme 2023-03-07 11:28:27 +01:00
parent 567e4eb551
commit d1f910db69
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 91 additions and 80 deletions

12
overlays/channels.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, inputs }:
final: prev: {
master = import inputs.master {
inherit (prev) system;
config.allowUnfree = true;
};
stable = import inputs.stable {
inherit (prev) system;
config.allowUnfree = true;
};
}