2018-12-10 23:51:48 +00:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2020-01-16 22:41:14 +00:00
|
|
|
lib = import ../modules/lib/stdlib-extended.nix pkgs.lib;
|
|
|
|
|
2018-12-10 23:51:48 +00:00
|
|
|
nmt = pkgs.fetchFromGitLab {
|
|
|
|
owner = "rycee";
|
|
|
|
repo = "nmt";
|
2020-04-24 19:45:04 +00:00
|
|
|
rev = "8e130d655ec396ce165763c95bbf4ac429810ca8";
|
|
|
|
sha256 = "1jbljr06kg1ycdn24hj8xap16axq11rhb6hm4949fz48n57pwwps";
|
2018-12-10 23:51:48 +00:00
|
|
|
};
|
|
|
|
|
2020-01-26 11:00:03 +00:00
|
|
|
modules = import ../modules/modules.nix {
|
|
|
|
inherit lib pkgs;
|
|
|
|
check = false;
|
2020-04-24 19:41:22 +00:00
|
|
|
} ++ [
|
|
|
|
{
|
2020-06-12 19:59:51 +00:00
|
|
|
# Fix impurities. Without these some of the user's environment
|
|
|
|
# will leak into the tests through `builtins.getEnv`.
|
2020-04-24 19:41:22 +00:00
|
|
|
xdg.enable = true;
|
|
|
|
home.username = "hm-user";
|
|
|
|
home.homeDirectory = "/home/hm-user";
|
2020-06-12 19:59:51 +00:00
|
|
|
|
|
|
|
# Avoid including documentation since this will cause
|
|
|
|
# unnecessary rebuilds of the tests.
|
|
|
|
manual.manpages.enable = false;
|
2020-04-24 19:41:22 +00:00
|
|
|
}
|
|
|
|
];
|
2020-01-16 22:41:14 +00:00
|
|
|
|
2018-12-10 23:51:48 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
import nmt {
|
2020-01-16 22:41:14 +00:00
|
|
|
inherit lib pkgs modules;
|
2018-12-10 23:51:48 +00:00
|
|
|
testedAttrPath = [ "home" "activationPackage" ];
|
2020-01-26 11:00:03 +00:00
|
|
|
tests = builtins.foldl' (a: b: a // (import b)) { } ([
|
|
|
|
./lib/types
|
|
|
|
./modules/files
|
|
|
|
./modules/home-environment
|
|
|
|
./modules/misc/fontconfig
|
|
|
|
./modules/programs/alacritty
|
2019-08-21 07:38:52 +00:00
|
|
|
./modules/programs/alot
|
2020-04-28 18:38:41 +00:00
|
|
|
./modules/programs/aria2
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/bash
|
|
|
|
./modules/programs/browserpass
|
2020-05-06 16:23:40 +00:00
|
|
|
./modules/programs/dircolors
|
2020-06-01 08:08:33 +00:00
|
|
|
./modules/programs/direnv
|
2019-09-30 07:11:36 +00:00
|
|
|
./modules/programs/fish
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/git
|
|
|
|
./modules/programs/gpg
|
2020-05-01 03:49:20 +00:00
|
|
|
./modules/programs/i3status
|
2020-04-16 11:36:21 +00:00
|
|
|
./modules/programs/kakoune
|
2020-04-18 18:22:09 +00:00
|
|
|
./modules/programs/lf
|
2020-02-21 07:19:30 +00:00
|
|
|
./modules/programs/lieer
|
2020-09-09 06:50:32 +00:00
|
|
|
./modules/programs/man
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/mbsync
|
2020-08-26 19:20:54 +00:00
|
|
|
./modules/programs/ncmpcpp
|
2020-06-16 01:47:58 +00:00
|
|
|
./modules/programs/ne
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/neomutt
|
2020-09-25 00:08:39 +00:00
|
|
|
./modules/programs/neovim
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/newsboat
|
2020-07-24 15:15:55 +00:00
|
|
|
./modules/programs/nushell
|
2020-04-07 07:10:07 +00:00
|
|
|
./modules/programs/qutebrowser
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/readline
|
2020-05-29 15:54:38 +00:00
|
|
|
./modules/programs/powerline-go
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/ssh
|
2020-02-29 21:17:47 +00:00
|
|
|
./modules/programs/starship
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/texlive
|
|
|
|
./modules/programs/tmux
|
2020-06-22 18:48:22 +00:00
|
|
|
./modules/programs/vscode
|
2020-03-20 10:02:58 +00:00
|
|
|
./modules/programs/zplug
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/zsh
|
|
|
|
./modules/xresources
|
2020-08-28 13:42:05 +00:00
|
|
|
] ++ lib.optionals pkgs.stdenv.hostPlatform.isDarwin [
|
|
|
|
./modules/targets-darwin
|
2020-01-26 11:00:03 +00:00
|
|
|
] ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
2020-05-27 23:24:49 +00:00
|
|
|
./meta # Suffices to run on one platform.
|
2020-02-21 18:11:58 +00:00
|
|
|
./modules/misc/debug
|
2020-09-18 15:20:45 +00:00
|
|
|
./modules/misc/numlock
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/misc/pam
|
|
|
|
./modules/misc/xdg
|
|
|
|
./modules/misc/xsession
|
2020-02-21 18:11:58 +00:00
|
|
|
./modules/programs/abook
|
2020-05-26 12:19:13 +00:00
|
|
|
./modules/programs/autorandr
|
2020-07-08 22:17:51 +00:00
|
|
|
./modules/services/dropbox
|
2020-06-08 21:01:17 +00:00
|
|
|
./modules/services/emacs
|
2020-07-08 22:17:51 +00:00
|
|
|
./modules/services/dropbox
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/firefox
|
|
|
|
./modules/programs/getmail
|
2020-02-21 07:30:59 +00:00
|
|
|
./modules/services/lieer
|
2020-08-26 19:20:54 +00:00
|
|
|
./modules/programs/ncmpcpp-linux
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/programs/rofi
|
2020-07-29 20:29:51 +00:00
|
|
|
./modules/programs/waybar
|
2020-04-12 13:42:43 +00:00
|
|
|
./modules/services/kanshi
|
2020-03-02 21:31:15 +00:00
|
|
|
./modules/services/polybar
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/services/sxhkd
|
2020-06-13 11:34:16 +00:00
|
|
|
./modules/services/fluidsynth
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/services/window-managers/i3
|
2020-05-11 21:56:40 +00:00
|
|
|
./modules/services/window-managers/sway
|
2020-01-26 11:00:03 +00:00
|
|
|
./modules/systemd
|
2020-08-28 13:42:05 +00:00
|
|
|
./modules/targets-linux
|
2020-01-26 11:00:03 +00:00
|
|
|
]);
|
2018-12-10 23:51:48 +00:00
|
|
|
}
|