mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +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.
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.waybar = {
|
|
package = config.lib.test.mkStubPackage { outPath = "@waybar@"; };
|
|
enable = true;
|
|
settings = [{
|
|
layer = "top";
|
|
position = "top";
|
|
height = 30;
|
|
output = [ "DP-1" ];
|
|
modules-left = [ "sway/workspaces" "sway/mode" "custom/my-module" ];
|
|
modules-center = [ "sway/window" ];
|
|
modules-right = [
|
|
"idle_inhibitor"
|
|
"pulseaudio"
|
|
"network"
|
|
"cpu"
|
|
"memory"
|
|
"backlight"
|
|
"tray"
|
|
"battery#bat1"
|
|
"battery#bat2"
|
|
"clock"
|
|
];
|
|
|
|
modules = {
|
|
"sway/workspaces" = {
|
|
disable-scroll = true;
|
|
all-outputs = true;
|
|
};
|
|
"sway/mode" = { tooltip = false; };
|
|
"sway/window" = { max-length = 120; };
|
|
"idle_inhibitor" = { format = "{icon}"; };
|
|
"custom/my-module" = {
|
|
format = "hello from {}";
|
|
exec = let
|
|
dummyScript =
|
|
config.lib.test.mkStubPackage { outPath = "@dummy@"; };
|
|
in "${dummyScript}/bin/dummy";
|
|
};
|
|
};
|
|
}];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/waybar/style.css
|
|
assertFileContent \
|
|
home-files/.config/waybar/config \
|
|
${./settings-complex-expected.json}
|
|
'';
|
|
};
|
|
}
|