From c3e85034f56f891281c014c38954e95bd923df94 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 11 Sep 2025 13:45:25 -0600 Subject: [PATCH] posixlycorrect: configure halloy --- home/modules/halloy.nix | 76 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/home/modules/halloy.nix b/home/modules/halloy.nix index 081e5f0..48c3806 100644 --- a/home/modules/halloy.nix +++ b/home/modules/halloy.nix @@ -14,11 +14,21 @@ in { programs.halloy = { enable = true; settings = { + theme = "macawCustom"; + preview.enabled = false; + sidebar = { + buffer_action = "replace-pane"; + focused_buffer_action = "close-pane"; + }; buffer = { channel.topic = { enabled = true; }; chathistory.infinite_scroll = true; + server_messages = { + join.exclude = ["*"]; + quit.exclude = ["*"]; + }; }; servers.liberachat = { @@ -33,9 +43,75 @@ in { chathistory = true; channels = [ "#lobsters" + "#nixos" + "#linux" + "##rust" + "#git" + "#c" + "##programming" + "#hardware" + "##chat" + "#OSRS" + "##math" + "##physics" + "#haskell" + "#soju" + "#datahoarder" + "#startrek" ]; }; }; + themes = { + macawCustom = { + general = { + background = "#333333"; + border = "#505050"; + horizontal_rule = "#333333"; + unread_indicator = "#2884FC"; + }; + + text = { + primary = "#DFDFDF"; + secondary = "#C2C2C2"; + tertiary = "#8839EF"; + success = "#959595"; + error = "#959595"; + }; + + buffer = { + action = "#959595"; + background = "#1E1E1E"; + background_text_input = "#2E2E2E"; + background_title_bar = "#2E2E2E"; + border = "#1A1A1A"; + border_selected = "#1A1A1A"; + code = "#7287FD"; + highlight = "#454645"; + nickname = "#00C8FF"; + selection = "#777777"; + timestamp = "#959595"; + topic = "#DFDFDF"; + url = "#2884FC"; + buffer.server_messages = { + default = "#959595"; + }; + }; + + buttons.primary = { + background = "#00000000"; + background_hover = "#484848"; + background_selected = "#4A4A4A"; + background_selected_hover = "#666666"; + }; + + buttons.secondary = { + background = "#3B3B3B"; + background_hover = "#484848"; + background_selected = "#646464"; + background_selected_hover = "#666666"; + }; + }; + }; }; }; }