11.stylix/modules/ghostty/testbed.nix
Mirza Arnaut 6eb0597e34
ghostty: init (#703)
Link: https://github.com/danth/stylix/pull/703

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-01-02 20:01:16 +01:00

20 lines
301 B
Nix

{ pkgs, ... }:
let
package = pkgs.ghostty;
in
{
stylix.testbed.application = {
enable = true;
name = "com.mitchellh.ghostty";
inherit package;
};
home-manager.sharedModules = [
{
programs.ghostty = {
enable = true;
inherit package;
};
}
];
}