2.home-manager/tests/modules/programs/hyprpanel/basic-config.nix
home-manager-ci[bot] d457fa3c76
programs/hyprpanel: init (#7303) (#7321)
(cherry picked from commit f5098b0740)

Co-authored-by: Perchun Pak <git@perchun.it>
2025-06-24 11:42:55 -05:00

34 lines
721 B
Nix

{ config, ... }:
{
programs.hyprpanel = {
enable = true;
package = config.lib.test.mkStubPackage { name = "hyprpanel"; };
settings = {
bar.battery.label = true;
bar.bluetooth.label = false;
bar.clock.format = "%H:%M:%S";
bar.layouts = {
"*" = {
left = [
"dashboard"
"workspaces"
"media"
];
middle = [ "windowtitle" ];
right = [
"volume"
"network"
"bluetooth"
"notifications"
];
};
};
};
};
nmt.script = ''
assertFileContent \
"home-files/.config/hyprpanel/config.json" \
${./basic-config.json}
'';
}