From 4606c3e1b59d8c93b2368b4e5352fcee7992c0e0 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Sun, 27 Jul 2025 10:44:47 -0700 Subject: [PATCH] helix: add testbed (#1772) Link: https://github.com/nix-community/stylix/pull/1772 Reviewed-by: awwpotato --- modules/helix/testbeds/helix.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/helix/testbeds/helix.nix diff --git a/modules/helix/testbeds/helix.nix b/modules/helix/testbeds/helix.nix new file mode 100644 index 00000000..ddbe26f0 --- /dev/null +++ b/modules/helix/testbeds/helix.nix @@ -0,0 +1,11 @@ +{ lib, ... }: +{ + stylix.testbed.ui.command = { + text = "hx flake-parts/flake.nix"; + useTerminal = true; + }; + + home-manager.sharedModules = lib.singleton { + programs.helix.enable = true; + }; +}