docker-nixpkgs/default.nix
zimbatm 949ac55e09
stop accepting nixpkgs as an argument
set the NIX_PATH to select the version of nixpkgs to use
2019-12-15 15:57:40 +01:00

8 lines
141 B
Nix

import <nixpkgs> {
# docker images run on Linux
system = "x86_64-linux";
config = {};
overlays = [
(import ./overlay.nix)
];
}