11.stylix/modules/halloy/testbeds/default.nix
awwpotato 5d28886e94
halloy: use upstream themes option (#1259)
Link: https://github.com/danth/stylix/pull/1259

Reviewed-by: Oliver Jõgar <me@treier.xyz>
2025-05-14 09:29:23 -07:00

25 lines
464 B
Nix

{ pkgs, lib, ... }:
let
package = pkgs.halloy;
in
{
stylix.testbed.ui.application = {
name = "org.squidowl.halloy";
inherit package;
};
home-manager.sharedModules = lib.singleton {
programs.halloy = {
enable = true;
inherit package;
settings = {
servers.liberachat = {
nickname = "stylix-testbed";
server = "irc.libera.chat";
channels = [ "#halloy" ];
};
};
};
};
}