1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-17 22:41:11 +01:00

halloy: fix themes example (#7046)

This commit is contained in:
awwpotato 2025-05-12 20:18:52 -07:00 committed by GitHub
parent 012cc9e166
commit 535a541b42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,21 +49,25 @@ in
] ]
); );
default = { }; default = { };
example = { example = lib.literalExpression ''
general = { {
background = "<string>"; my-theme = {
border = "<string>"; general = {
horizontal_rule = "<string>"; background = "<string>";
unread_indicator = "<string>"; border = "<string>";
}; horizontal_rule = "<string>";
text = { unread_indicator = "<string>";
primary = "<string>"; };
secondary = "<string>"; text = {
tertiary = "<string>"; primary = "<string>";
success = "<string>"; secondary = "<string>";
error = "<string>"; tertiary = "<string>";
}; success = "<string>";
}; error = "<string>";
};
};
}
'';
description = '' description = ''
Each theme is written to {file}`$XDG_CONFIG_HOME/halloy/themes/NAME.toml`. Each theme is written to {file}`$XDG_CONFIG_HOME/halloy/themes/NAME.toml`.
See <https://halloy.chat/configuration/themes/index.html> for more information. See <https://halloy.chat/configuration/themes/index.html> for more information.