aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/nixfmt/out.nix
blob: d9965e91df801726450ebc1569cf192df86b0aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{

  nixpkgs = {
    config.allowUnfree = true;
    overlays = [
      (final: prev: {
        unstable = import self.inputs.nixpkgs-unstable {
          system = system;
          config.allowUnfree = true;
        };
      })
    ];
  };

}