mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-23 01:48:37 +03:00
13 lines
181 B
Nix
13 lines
181 B
Nix
{
|
|
system,
|
|
nixpkgs,
|
|
overlay,
|
|
module,
|
|
uid ? 1000,
|
|
gid ? 1000,
|
|
}:
|
|
import ./create.nix {
|
|
inherit system nixpkgs overlay module uid gid;
|
|
common = ./common-plasma6.nix;
|
|
}
|