Migrate neovim configuration to nixvim

This commit is contained in:
♥ Minnie ♥ 2024-08-04 22:21:23 +08:00
parent 41e97a6fc9
commit bede9baa04
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
12 changed files with 374 additions and 509 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./git.nix
./nvim.nix
./zsh.nix
];

View file

@ -0,0 +1,7 @@
{ inputs, ... }:
{
# Install our nixvim configuration for neovim.
home.packages = [ inputs.nixvim-config.packages.x86_64-linux.default ];
}