11.stylix/modules/ghostty/testbeds/ghostty.nix
2025-05-24 08:53:58 -04:00

17 lines
284 B
Nix

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