not working nvim config

This commit is contained in:
2025-11-19 21:44:28 +01:00
parent 63fe9b4ac9
commit d1dc44f4d4

View File

@@ -0,0 +1,19 @@
{
pkgs,
...
}:
let
nvf = import (builtins.fetchTarball {
url = "https://github.com/notashelf/nvf/archive/v0.7.tar.gz";
# Optionally, you can add 'sha256' for verification and caching
# sha256 = "<sha256>";
});
in{
imports = [
nvf.nixosModules.nvf
];
programs.nvf = {
enable = true;
};
}