mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 12:30:36 -05:00
9 lines
142 B
Nix
9 lines
142 B
Nix
import <nixpkgs> {
|
|
# docker images run on Linux
|
|
system = "x86_64-linux";
|
|
config = { };
|
|
overlays = [
|
|
(import ./overlay.nix)
|
|
];
|
|
}
|