7 lines
161 B
Nix
7 lines
161 B
Nix
|
|
{ buildAstalModule, json-glib }:
|
||
|
|
buildAstalModule {
|
||
|
|
name = "greet";
|
||
|
|
buildInputs = [ json-glib ];
|
||
|
|
meta.description = "Astal module for greetd using IPC";
|
||
|
|
}
|