1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-30 14:11:02 +01:00
home-manager/tests/modules/programs/waybar/settings-complex.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

80 lines
1.9 KiB
Nix

{ config, ... }:
{
config = {
home.stateVersion = "21.11";
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";
};
};
}
{
position = "bottom";
output = [ "!DP-1" ];
modules-left = [ "sway/mode" ];
modules-center = [ "clock" ];
modules = {
"sway/mode" = {
tooltip = true;
};
};
}
];
};
nmt.script = ''
assertPathNotExists home-files/.config/waybar/style.css
assertFileContent \
home-files/.config/waybar/config \
${./settings-complex-expected.json}
'';
};
}