1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-19 11:27:40 +03:00
niv/nix/default.nix
zimbatm 1cb695fe7e
format with nixpkgs-fmt
I also couldn't help myself to change the `with { ... }` blocks
 to `let ... in` blocks.
2019-11-16 16:08:44 +00:00

9 lines
202 B
Nix

{ sources ? import ./sources.nix }:
import sources.nixpkgs {
overlays = [
(_: pkgs: { inherit sources; })
(_: pkgs: { termtosvg = pkgs.callPackage ./termtosvg.nix {}; })
];
config = {};
}