diff --git a/README.md b/README.md index 7e913de..12f6b59 100644 --- a/README.md +++ b/README.md @@ -119,8 +119,35 @@ A flake is included with the repo which can be used with Home Manager. # And configure programs.ironbar = { enable = true; - config = {}; - style = ""; + systemd = true; + config = { + # An example: + monitors = { + DP-1 = { + anchor_to_edges = true; + position = "top"; + height = 16; + start = [ + { type = "clock"; } + ]; + end = [ + { + type = "tray"; + icon_size = 16; + } + ]; + }; + }; + }; + style = /* css */ '' + /* An example */ + * { + font-family: Noto Sans Nerd Font, sans-serif; + font-size: 16px; + border: none; + border-radius: 0; + } + ''; package = inputs.ironbar; features = ["feature" "another_feature"]; };