1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/sioyek/sioyek-basic-configuration.nix
Robert Helgesson 7a3f0b3b8d
tests: rework derivation stubbing
Instead of having to manually stub packages that should not be
downloaded we instead automatically stub all packages (except a small
list of whitelisted ones). Tests can re-introduce the real package by
using the `realPkgs` module argument.
2025-02-04 23:58:20 +01:00

32 lines
821 B
Nix

{
programs.sioyek = {
enable = true;
bindings = {
"move_down" = "j";
"move_left" = "h";
"move_right" = "l";
"move_up" = "k";
"screen_down" = [ "d" "<C-d>" ];
"screen_up" = [ "u" "<C-u>" ];
};
config = {
"dark_mode_background_color" = "0.0 0.0 0.0";
"dark_mode_contrast" = "0.8";
};
};
nmt = {
description = "Sioyek basic setup with sample configuration";
script = ''
assertFileExists home-files/.config/sioyek/prefs_user.config
assertFileContent home-files/.config/sioyek/prefs_user.config ${
./test_prefs_user.config
}
assertFileExists home-files/.config/sioyek/keys_user.config
assertFileContent home-files/.config/sioyek/keys_user.config ${
./test_keys_user.config
}
'';
};
}