summaryrefslogtreecommitdiffstats
path: root/overlay.nix
blob: d79b87c2271f2ea72b83f36df190fc8856c299a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
    inputs,
    system,
    ...
}: final: prev: {
    stable = import inputs.nixpkgs-stable {
        inherit system;
        config.allowUnfree = true;
    };
}