mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
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.
27 lines
691 B
Nix
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'
|
|
'';
|
|
};
|
|
}
|