2018-12-11 00:51:48 +01:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
nmt = pkgs.fetchFromGitLab {
|
|
|
|
owner = "rycee";
|
|
|
|
repo = "nmt";
|
2019-01-14 22:48:59 +01:00
|
|
|
rev = "2ed3897e22ee0e1d343ba2c33122d57d888dedfe";
|
|
|
|
sha256 = "1k4qapinsvrf40ccpva6rfp11b90h413xrf5h57v84m88fcgac7n";
|
2018-12-11 00:51:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
import nmt {
|
|
|
|
inherit pkgs;
|
|
|
|
modules = import ../modules/modules.nix { inherit pkgs; lib = pkgs.lib; };
|
|
|
|
testedAttrPath = [ "home" "activationPackage" ];
|
|
|
|
tests = {
|
|
|
|
"git/with-most-options" = ./modules/programs/git.nix;
|
|
|
|
"git/with-str-extra-config" = ./modules/programs/git-with-str-extra-config.nix;
|
2019-01-09 02:09:23 +01:00
|
|
|
texlive-minimal = ./modules/programs/texlive-minimal.nix;
|
2018-12-11 00:51:48 +01:00
|
|
|
xresources = ./modules/xresources.nix;
|
|
|
|
};
|
|
|
|
}
|