neovim config

This commit is contained in:
2023-11-20 18:40:30 +01:00
parent 206194af6a
commit 20387d6f41
5 changed files with 415 additions and 2 deletions

View File

@@ -10,9 +10,14 @@
ags = {
url = "github:Aylur/ags";
};
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {nixpkgs, home-manager, ags, ...}:
outputs = {nixpkgs, home-manager, ags, nixvim, ...}:
let
username = "theaninova";
system = "x86_64-linux";
@@ -36,6 +41,7 @@
modules = [
ags.homeManagerModules.default
home
nixvim.homeManagerModules.nixvim
];
};
};