Link: https://github.com/danth/stylix/pull/703 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
20 lines
301 B
Nix
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;
|
|
};
|
|
}
|
|
];
|
|
}
|