11.stylix/modules/halloy/testbed.nix
Oliver Jõgar 87791e0665
halloy: init (#825)
Link: https://github.com/danth/stylix/pull/825

Co-authored-by: Calvin Lee <pounce@integraldoma.in>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-02-08 15:29:44 +01:00

14 lines
209 B
Nix

{ pkgs, ... }:
let
package = pkgs.halloy;
in
{
stylix.testbed.application = {
enable = true;
name = "org.squidowl.halloy";
inherit package;
};
environment.systemPackages = [ package ];
}