From d1dc44f4d462a294e5590f740b0b7988b1dcf849 Mon Sep 17 00:00:00 2001 From: cerberus Date: Wed, 19 Nov 2025 21:44:28 +0100 Subject: [PATCH] not working nvim config --- nixos/modules/users/nvim.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nixos/modules/users/nvim.nix diff --git a/nixos/modules/users/nvim.nix b/nixos/modules/users/nvim.nix new file mode 100644 index 0000000..c08146c --- /dev/null +++ b/nixos/modules/users/nvim.nix @@ -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 = ""; + }); +in{ + imports = [ + nvf.nixosModules.nvf + ]; + + programs.nvf = { + enable = true; + }; +}