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