nix-exprs/flake/outputs/nixpkgs.nix

19 lines
225 B
Nix
Raw Permalink Normal View History

2024-12-05 14:26:37 +08:00
{ self, ... }:
let
overlays = [
self.overlays.default
];
in
{
perSystem =
{ ... }:
{
nixpkgs = {
config = {
allowUnfree = true;
};
inherit overlays;
};
};
}