2019-08-19 03:28:03 +02:00
|
|
|
# Technically I suppose Nixery is not a third-party program, but it's
|
|
|
|
# outside of this repository ...
|
2019-11-15 16:26:08 +01:00
|
|
|
{ pkgs, ... }:
|
2019-08-19 03:28:03 +02:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
let src = pkgs.fetchFromGitHub {
|
2019-08-19 03:28:03 +02:00
|
|
|
owner = "google";
|
|
|
|
repo = "nixery";
|
2019-10-25 15:52:23 +02:00
|
|
|
rev = "4f6ce83f9296545d6c74321b37d18545764c8827";
|
|
|
|
sha256 = "19aiak1pss6vwm0fwn02827l5ir78fkqglfbdl2gchsyv3gps8bg";
|
2019-08-19 03:28:03 +02:00
|
|
|
};
|
|
|
|
in import src {
|
2020-02-21 13:47:29 +01:00
|
|
|
inherit pkgs;
|
2019-08-19 03:28:03 +02:00
|
|
|
preLaunch = ''
|
|
|
|
export USER=root
|
|
|
|
cachix use tazjin
|
|
|
|
'';
|
2019-12-18 18:54:29 +01:00
|
|
|
extraPackages = with pkgs.third_party; [ cachix openssh ];
|
2019-08-19 03:28:03 +02:00
|
|
|
}
|