1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/services/trayer/basic-configuration.nix
Robert Helgesson cb09a968e9
tests: add option test.stubs
This option provides a more convenient way to overlay dummy packages.
It also adds a function `config.lib.test.mkStubPackage` that can,
e.g., be used for `package` options.
2021-09-26 23:26:38 +02:00

28 lines
691 B
Nix

{ config, pkgs, ... }:
{
config = {
services.trayer = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@trayer@"; };
settings = {
edge = "top";
padding = 6;
SetDockType = true;
tint = "0x282c34";
SetPartialStrut = true;
expand = true;
monitor = 1;
};
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/trayer.service
assertFileExists $serviceFile
assertFileContains $serviceFile \
'ExecStart=@trayer@/bin/trayer --SetDockType true --SetPartialStrut true --edge top --expand true --monitor 1 --padding 6 --tint 0x282c34'
'';
};
}