Support multiple testbeds per module with /modules/<MODULE>/testbeds/<TESTBED>.nix, while validating various invariants.
18 lines
300 B
Nix
18 lines
300 B
Nix
{ lib, pkgs, ... }:
|
|
let
|
|
package = pkgs.ghostty;
|
|
in
|
|
{
|
|
stylix.testbed.application = {
|
|
enable = true;
|
|
name = "com.mitchellh.ghostty";
|
|
inherit package;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
inherit package;
|
|
};
|
|
};
|
|
}
|