dotfiles/overlays/channels.nix

13 lines
229 B
Nix
Raw Normal View History

2023-03-07 11:28:27 +01:00
{ lib, inputs }:
final: prev: {
master = import inputs.master {
inherit (prev) system;
config.allowUnfree = true;
};
stable = import inputs.stable {
inherit (prev) system;
config.allowUnfree = true;
};
}