aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs.nix
blob: 2d85c635057b82c6339bf0300135cdae0a908c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import <nixpkgs> {
  overlays = [
    (self: super: {
      nur = super.callPackage (import (builtins.fetchTarball {
        url = https://github.com/nix-community/NUR/archive/master.tar.gz;
      })) {};
    })

    (import "${builtins.fetchTarball {
      url = https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz;
    }}/rust-overlay.nix")

    (self: super: {
      inherit (super.nur.repos.tilpner.pkgs)
        bitflip kernelConfig;
    })
  ];
}