1
0
Fork 0

Add package import magic

This commit is contained in:
clerie 2020-12-09 22:42:39 +01:00
parent 3b2b9b50f3
commit 6b863caa45
3 changed files with 12 additions and 0 deletions

View File

@ -33,4 +33,8 @@
services.openssh.passwordAuthentication = false;
services.openssh.challengeResponseAuthentication = false;
services.openssh.permitRootLogin = lib.mkDefault "no";
nixpkgs.overlays = [
(import ../../pkgs/overlay.nix)
];
}

5
pkgs/default.nix Normal file
View File

@ -0,0 +1,5 @@
import <nixpkgs> {
overlays = [
(import ./overlay.nix)
];
}

3
pkgs/overlay.nix Normal file
View File

@ -0,0 +1,3 @@
self: super: {
anycast_healthchecker = self.python3.pkgs.callPackage ./anycast_healthchecker {};
}