mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-06 19:14:57 +11:00
7 lines
107 B
Nix
7 lines
107 B
Nix
{
|
|
clangStdenv,
|
|
gccStdenv,
|
|
}: {
|
|
clang = { stdenv = clangStdenv; };
|
|
gcc = { stdenv = gccStdenv; };
|
|
}
|