2021-01-29 17:43:49 +01:00
|
|
|
{ pkgs ? import <nixpkgs> {}, enableBig ? true }:
|
2018-12-11 00:51:48 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2020-01-16 23:41:14 +01:00
|
|
|
lib = import ../modules/lib/stdlib-extended.nix pkgs.lib;
|
|
|
|
|
2018-12-11 00:51:48 +01:00
|
|
|
nmt = pkgs.fetchFromGitLab {
|
|
|
|
owner = "rycee";
|
|
|
|
repo = "nmt";
|
2021-06-27 14:20:13 +02:00
|
|
|
rev = "89924d8e6e0fcf866a11324d32c6bcaa89cda506";
|
|
|
|
sha256 = "02wzrbmpdpgig58a1rhz8sb0p2rvbapnlcmhi4d4bi8w9md6pmdl";
|
2018-12-11 00:51:48 +01:00
|
|
|
};
|
|
|
|
|
2020-01-26 12:00:03 +01:00
|
|
|
modules = import ../modules/modules.nix {
|
|
|
|
inherit lib pkgs;
|
|
|
|
check = false;
|
2020-04-24 21:41:22 +02:00
|
|
|
} ++ [
|
|
|
|
{
|
2020-06-12 21:59:51 +02:00
|
|
|
# Fix impurities. Without these some of the user's environment
|
|
|
|
# will leak into the tests through `builtins.getEnv`.
|
2020-04-24 21:41:22 +02:00
|
|
|
xdg.enable = true;
|
|
|
|
home.username = "hm-user";
|
|
|
|
home.homeDirectory = "/home/hm-user";
|
2020-06-12 21:59:51 +02:00
|
|
|
|
|
|
|
# Avoid including documentation since this will cause
|
|
|
|
# unnecessary rebuilds of the tests.
|
|
|
|
manual.manpages.enable = false;
|
2020-12-30 17:20:47 +01:00
|
|
|
|
2022-01-02 10:22:50 +01:00
|
|
|
imports = [ ./asserts.nix ./big-test.nix ./stubs.nix ];
|
|
|
|
|
|
|
|
test.enableBig = enableBig;
|
2020-04-24 21:41:22 +02:00
|
|
|
}
|
|
|
|
];
|
2020-01-16 23:41:14 +01:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
isDarwin = pkgs.stdenv.hostPlatform.isDarwin;
|
|
|
|
isLinux = pkgs.stdenv.hostPlatform.isLinux;
|
|
|
|
|
2018-12-11 00:51:48 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
import nmt {
|
2020-01-16 23:41:14 +01:00
|
|
|
inherit lib pkgs modules;
|
2018-12-11 00:51:48 +01:00
|
|
|
testedAttrPath = [ "home" "activationPackage" ];
|
2020-01-26 12:00:03 +01:00
|
|
|
tests = builtins.foldl' (a: b: a // (import b)) { } ([
|
|
|
|
./lib/types
|
|
|
|
./modules/files
|
|
|
|
./modules/home-environment
|
|
|
|
./modules/misc/fontconfig
|
|
|
|
./modules/programs/alacritty
|
2022-01-25 22:47:27 +01:00
|
|
|
./modules/programs/alot
|
2020-04-28 20:38:41 +02:00
|
|
|
./modules/programs/aria2
|
2021-10-05 23:05:22 +02:00
|
|
|
./modules/programs/atuin
|
2020-09-18 15:07:40 +02:00
|
|
|
./modules/programs/autojump
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/bash
|
2021-08-12 21:24:19 +02:00
|
|
|
./modules/programs/bat
|
2021-09-13 03:09:31 +02:00
|
|
|
./modules/programs/bottom
|
2021-08-31 18:52:20 +02:00
|
|
|
./modules/programs/broot
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/browserpass
|
2020-05-06 18:23:40 +02:00
|
|
|
./modules/programs/dircolors
|
2020-06-01 10:08:33 +02:00
|
|
|
./modules/programs/direnv
|
2022-01-02 10:22:50 +01:00
|
|
|
./modules/programs/emacs
|
2020-09-27 14:20:19 +02:00
|
|
|
./modules/programs/feh
|
2019-09-30 09:11:36 +02:00
|
|
|
./modules/programs/fish
|
2020-10-15 22:25:47 +02:00
|
|
|
./modules/programs/gh
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/git
|
|
|
|
./modules/programs/gpg
|
2022-01-04 00:09:24 +01:00
|
|
|
./modules/programs/helix
|
2021-06-27 00:29:42 +02:00
|
|
|
./modules/programs/himalaya
|
2021-05-19 01:36:08 +02:00
|
|
|
./modules/programs/htop
|
2020-05-01 05:49:20 +02:00
|
|
|
./modules/programs/i3status
|
2021-10-30 20:40:49 +02:00
|
|
|
./modules/programs/irssi
|
2020-04-16 13:36:21 +02:00
|
|
|
./modules/programs/kakoune
|
2021-04-07 16:18:09 +02:00
|
|
|
./modules/programs/kitty
|
2021-11-11 11:32:48 +01:00
|
|
|
./modules/programs/less
|
2020-04-18 20:22:09 +02:00
|
|
|
./modules/programs/lf
|
2022-01-25 22:47:27 +01:00
|
|
|
./modules/programs/lieer
|
2020-09-09 08:50:32 +02:00
|
|
|
./modules/programs/man
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/mbsync
|
2021-01-22 00:10:12 +01:00
|
|
|
./modules/programs/mpv
|
2022-02-22 04:24:27 +01:00
|
|
|
./modules/programs/mu
|
2020-08-26 21:20:54 +02:00
|
|
|
./modules/programs/ncmpcpp
|
2020-06-16 03:47:58 +02:00
|
|
|
./modules/programs/ne
|
2022-01-25 22:47:27 +01:00
|
|
|
./modules/programs/neomutt
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/newsboat
|
2021-05-10 00:13:10 +02:00
|
|
|
./modules/programs/nix-index
|
2021-10-06 01:14:52 +02:00
|
|
|
./modules/programs/nnn
|
2020-07-24 17:15:55 +02:00
|
|
|
./modules/programs/nushell
|
2022-01-01 20:51:06 +01:00
|
|
|
./modules/programs/pandoc
|
2021-04-20 22:16:27 +02:00
|
|
|
./modules/programs/pet
|
2020-10-22 21:25:09 +02:00
|
|
|
./modules/programs/powerline-go
|
2022-02-02 09:55:08 +01:00
|
|
|
./modules/programs/pubs
|
2020-04-07 09:10:07 +02:00
|
|
|
./modules/programs/qutebrowser
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/readline
|
2021-12-30 12:47:44 +01:00
|
|
|
./modules/programs/sagemath
|
2021-01-30 03:29:23 +01:00
|
|
|
./modules/programs/sbt
|
2021-04-23 04:27:29 +02:00
|
|
|
./modules/programs/scmpuff
|
2021-07-11 19:28:56 +02:00
|
|
|
./modules/programs/sm64ex
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/ssh
|
2020-02-29 22:17:47 +01:00
|
|
|
./modules/programs/starship
|
2021-11-24 03:33:03 +01:00
|
|
|
./modules/programs/taskwarrior
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/texlive
|
|
|
|
./modules/programs/tmux
|
2021-04-29 01:56:58 +02:00
|
|
|
./modules/programs/topgrade
|
2020-06-22 20:48:22 +02:00
|
|
|
./modules/programs/vscode
|
2022-01-02 00:22:05 +01:00
|
|
|
./modules/programs/watson
|
2020-03-20 11:02:58 +01:00
|
|
|
./modules/programs/zplug
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/zsh
|
|
|
|
./modules/xresources
|
2021-09-26 11:08:45 +02:00
|
|
|
] ++ lib.optionals isDarwin [
|
2021-11-21 17:13:30 +01:00
|
|
|
./modules/launchd
|
2020-08-28 15:42:05 +02:00
|
|
|
./modules/targets-darwin
|
2021-09-26 11:08:45 +02:00
|
|
|
] ++ lib.optionals isLinux [
|
2021-01-23 15:56:38 +01:00
|
|
|
./modules/config/i18n
|
2021-06-16 00:59:25 +02:00
|
|
|
./modules/i18n/input-method
|
2022-01-02 10:22:50 +01:00
|
|
|
./modules/misc/debug
|
2021-04-30 08:56:01 +02:00
|
|
|
./modules/misc/gtk
|
2020-09-18 17:20:45 +02:00
|
|
|
./modules/misc/numlock
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/misc/pam
|
2021-03-04 04:20:17 +01:00
|
|
|
./modules/misc/qt
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/misc/xdg
|
|
|
|
./modules/misc/xsession
|
2020-02-21 19:11:58 +01:00
|
|
|
./modules/programs/abook
|
2020-05-26 14:19:13 +02:00
|
|
|
./modules/programs/autorandr
|
2022-01-02 10:22:50 +01:00
|
|
|
./modules/programs/firefox
|
2021-05-14 22:42:00 +02:00
|
|
|
./modules/programs/foot
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/getmail
|
2021-06-15 23:39:56 +02:00
|
|
|
./modules/programs/gnome-terminal
|
2021-02-09 12:59:11 +01:00
|
|
|
./modules/programs/hexchat
|
2020-09-02 04:37:42 +02:00
|
|
|
./modules/programs/i3status-rust
|
2021-10-21 16:40:36 +02:00
|
|
|
./modules/programs/kodi
|
2021-06-12 09:55:58 +02:00
|
|
|
./modules/programs/mangohud
|
2020-08-26 21:20:54 +02:00
|
|
|
./modules/programs/ncmpcpp-linux
|
2020-10-22 21:25:09 +02:00
|
|
|
./modules/programs/neovim # Broken package dependency on Darwin.
|
2021-06-06 02:09:02 +02:00
|
|
|
./modules/programs/rbw
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/programs/rofi
|
2020-08-03 10:38:22 +02:00
|
|
|
./modules/programs/rofi-pass
|
2021-06-17 17:06:47 +02:00
|
|
|
./modules/programs/terminator
|
2020-07-29 22:29:51 +02:00
|
|
|
./modules/programs/waybar
|
2021-06-29 21:02:43 +02:00
|
|
|
./modules/programs/xmobar
|
2021-04-29 02:48:05 +02:00
|
|
|
./modules/services/barrier
|
2021-07-05 22:29:34 +02:00
|
|
|
./modules/services/devilspie2
|
2020-10-22 21:25:09 +02:00
|
|
|
./modules/services/dropbox
|
|
|
|
./modules/services/emacs
|
2021-10-25 00:27:41 +02:00
|
|
|
./modules/services/espanso
|
2021-10-11 21:41:49 +02:00
|
|
|
./modules/services/flameshot
|
2020-10-22 21:25:09 +02:00
|
|
|
./modules/services/fluidsynth
|
2021-08-10 06:21:03 +02:00
|
|
|
./modules/services/fnott
|
2022-02-16 17:09:46 +01:00
|
|
|
./modules/services/fusuma
|
2021-07-15 03:20:28 +02:00
|
|
|
./modules/services/git-sync
|
2021-11-25 19:28:18 +01:00
|
|
|
./modules/services/gpg-agent
|
2019-02-24 20:33:56 +01:00
|
|
|
./modules/services/gromit-mpx
|
2021-07-05 22:59:19 +02:00
|
|
|
./modules/services/home-manager-auto-upgrade
|
2020-04-12 15:42:43 +02:00
|
|
|
./modules/services/kanshi
|
2020-10-22 21:25:09 +02:00
|
|
|
./modules/services/lieer
|
2022-03-04 00:43:40 +01:00
|
|
|
./modules/services/mpd
|
2021-06-07 23:38:42 +02:00
|
|
|
./modules/services/pantalaimon
|
2020-12-03 03:55:37 +01:00
|
|
|
./modules/services/pbgopy
|
2021-01-30 18:20:36 +01:00
|
|
|
./modules/services/playerctld
|
2020-03-02 22:31:15 +01:00
|
|
|
./modules/services/polybar
|
2021-04-30 08:56:01 +02:00
|
|
|
./modules/services/redshift-gammastep
|
2021-10-05 18:58:25 +02:00
|
|
|
./modules/services/screen-locker
|
2022-01-03 20:03:20 +01:00
|
|
|
./modules/services/swayidle
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/services/sxhkd
|
2021-05-18 16:43:17 +02:00
|
|
|
./modules/services/syncthing
|
2021-07-21 22:43:18 +02:00
|
|
|
./modules/services/trayer
|
2021-10-24 15:50:13 +02:00
|
|
|
./modules/services/twmn
|
2021-06-20 00:40:17 +02:00
|
|
|
./modules/services/window-managers/bspwm
|
2021-11-09 23:17:36 +01:00
|
|
|
./modules/services/window-managers/herbstluftwm
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/services/window-managers/i3
|
2020-05-11 23:56:40 +02:00
|
|
|
./modules/services/window-managers/sway
|
2020-11-28 01:47:35 +01:00
|
|
|
./modules/services/wlsunset
|
2021-09-30 05:56:05 +02:00
|
|
|
./modules/services/xsettingsd
|
2020-01-26 12:00:03 +01:00
|
|
|
./modules/systemd
|
2020-08-28 15:42:05 +02:00
|
|
|
./modules/targets-linux
|
2020-01-26 12:00:03 +01:00
|
|
|
]);
|
2018-12-11 00:51:48 +01:00
|
|
|
}
|