1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

trayer: add module (#2177)

This commit is contained in:
Andreas Mager 2021-07-21 22:43:18 +02:00 committed by Robert Helgesson
parent 784da32958
commit cc6909d407
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
8 changed files with 231 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ config, pkgs, ... }:
{
config = {
services.trayer = {
enable = true;
package = pkgs.writeScriptBin "dummy-trayer" "" // {
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'
'';
};
}