2018-12-11 00:51:48 +01:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
nmt = pkgs.fetchFromGitLab {
|
|
|
|
owner = "rycee";
|
|
|
|
repo = "nmt";
|
2019-05-06 00:17:30 +02:00
|
|
|
rev = "89fb12a2aaa8ec671e22a033162c7738be714305";
|
|
|
|
sha256 = "07yc1jkgw8vhskzk937k9hfba401q8rn4sgj9baw3fkjl9zrbcyf";
|
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 = {
|
2019-01-16 02:14:14 +01:00
|
|
|
files-executable = ./modules/files/executable.nix;
|
|
|
|
files-hidden-source = ./modules/files/hidden-source.nix;
|
|
|
|
files-source-with-spaces = ./modules/files/source-with-spaces.nix;
|
|
|
|
files-text = ./modules/files/text.nix;
|
2019-01-29 18:17:24 +01:00
|
|
|
git-with-email = ./modules/programs/git-with-email.nix;
|
2019-01-14 23:02:33 +01:00
|
|
|
git-with-most-options = ./modules/programs/git.nix;
|
|
|
|
git-with-str-extra-config = ./modules/programs/git-with-str-extra-config.nix;
|
2019-01-31 02:08:40 +01:00
|
|
|
mbsync = ./modules/programs/mbsync.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;
|
2019-03-19 23:00:17 +01:00
|
|
|
}
|
2019-03-24 15:52:30 +01:00
|
|
|
// pkgs.lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux (
|
|
|
|
{
|
|
|
|
i3-keybindings = ./modules/services/window-managers/i3-keybindings.nix;
|
|
|
|
}
|
2019-04-27 00:21:18 +02:00
|
|
|
// import ./modules/misc/pam
|
2019-03-24 15:52:30 +01:00
|
|
|
// import ./modules/systemd
|
|
|
|
)
|
2019-04-27 00:21:18 +02:00
|
|
|
// import ./modules/home-environment
|
2019-05-06 00:27:25 +02:00
|
|
|
// import ./modules/misc/fontconfig
|
2019-05-13 04:08:23 +02:00
|
|
|
// import ./modules/programs/alacritty
|
2019-04-27 00:21:18 +02:00
|
|
|
// import ./modules/programs/bash
|
2019-03-24 15:52:30 +01:00
|
|
|
// import ./modules/programs/ssh
|
2019-04-27 00:21:18 +02:00
|
|
|
// import ./modules/programs/tmux
|
|
|
|
// import ./modules/programs/zsh;
|
2018-12-11 00:51:48 +01:00
|
|
|
}
|