20 lines
374 B
Nix
20 lines
374 B
Nix
# homepage: https://github.com/AstroNvim/astroui
|
|
{ helpers, icons, lib, pkgs, ... }:
|
|
|
|
let
|
|
status = import ./status;
|
|
in
|
|
{
|
|
extra = {
|
|
packages = [
|
|
(import ./package { inherit lib pkgs; })
|
|
];
|
|
|
|
config = ''
|
|
require('astroui').setup({
|
|
icons = ${helpers.toLuaObject icons},
|
|
status = ${helpers.toLuaObject status},
|
|
})
|
|
'';
|
|
};
|
|
}
|