9 lines
174 B
Nix
9 lines
174 B
Nix
{config, ...}: let
|
|
inherit (config.modules.other.system) username;
|
|
in {
|
|
programs.neovim-flake.settings.vim = {
|
|
dashboard = {
|
|
alpha.enable = true;
|
|
};
|
|
};
|
|
}
|