2024-06-05 14:45:25 +02:00
|
|
|
# homepage: https://github.com/AstroNvim/astroui
|
2024-06-07 17:12:52 +02:00
|
|
|
{ helpers, lib, pkgs, ... }:
|
2024-06-05 14:45:25 +02:00
|
|
|
|
2024-06-07 17:12:52 +02:00
|
|
|
let
|
|
|
|
|
icons = import ./icons.nix;
|
|
|
|
|
status = import ./status;
|
|
|
|
|
in
|
2024-06-05 14:45:25 +02:00
|
|
|
{
|
|
|
|
|
extra = {
|
|
|
|
|
packages = [
|
|
|
|
|
(import ./package { inherit lib pkgs; })
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
config = ''
|
|
|
|
|
require('astroui').setup({
|
|
|
|
|
icons = ${helpers.toLuaObject icons},
|
2024-06-07 17:12:52 +02:00
|
|
|
status = ${helpers.toLuaObject status},
|
2024-06-05 14:45:25 +02:00
|
|
|
})
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|