depot/third_party/home-manager/tests/modules/services/trayer/basic-configuration.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

27 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'
'';
};
}