mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
10 lines
183 B
Nix
10 lines
183 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
];
|
|
programs.nixvim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
luaLoader.enable = true;
|
|
};
|
|
}
|