about summary refs log tree commit diff
path: root/config.nix
blob: ae9eaad30aeed57e7716eff5b471f2822fe34701 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  allowUnfree = true;
  packageOverrides = pkgs: {
    nur = import (builtins.fetchTarball {
      url = "https://github.com/nix-community/NUR/archive/b42e8200dc093babc67634d58ea2cc88c22ad786.tar.gz";
      sha256 = "1msijla8ak2dg17xxkj3y3p2877k5icp9va35vsxza4n5inqk5z1";
    }) {
      inherit pkgs;
    };
  };
}