summaryrefslogtreecommitdiff
path: root/overlays/00-linux.nix
blob: 2a51bde1c9de730d94ffcc45e8db46d71091c18c (plain)
1
2
3
4
5
6
7
8
9
10
self: super:
{
  linux-overlay = self.buildEnv {
    name = "linux-overlay";
    ignoreCollisions = true;
    paths = with self;[
       linuxPackages.perf
    ];
  };
}