1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/services/trayer/basic-configuration.nix

28 lines
691 B
Nix
Raw Normal View History

2021-07-21 22:43:18 +02:00
{ config, pkgs, ... }:
{
config = {
services.trayer = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@trayer@"; };
2021-07-21 22:43:18 +02:00
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'
'';
};
}