1b771db0c8
switch over to a neovim configuration in lua, btrtile for dwl, remove unnecessary things, some browser addons, rofimoji, fix february flake
10 lines
249 B
Nix
10 lines
249 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
package = inputs.neovim-nightly-overlay.packages.${pkgs.stdenv.hostPlatform.system}.default;
|
|
extraLuaConfig = builtins.readFile ./config.lua;
|
|
defaultEditor = true;
|
|
};
|
|
}
|