nixos-config/home-manager/wayland/wob.nix

14 lines
267 B
Nix
Raw Normal View History

2023-01-07 20:52:23 -05:00
{ config, pkgs, ... }:
{
home.packages = [ pkgs.wob ];
xdg.configFile = {
2023-01-07 20:52:23 -05:00
"wob/volume.ini".text = "";
"wob/brightness.ini".text = config.xdg.configFile."wob/volume.ini".text + ''
2023-01-07 20:52:23 -05:00
border_color = #FFFF00FF
bar_color = #FFFF00FF
'';
};
2023-01-07 20:52:23 -05:00
}