From 345254b97e58de292f458e2df83508ed4b97f29d Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Fri, 6 Jun 2025 19:23:29 -0700 Subject: [PATCH] fetch nvim config from github --- home.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index b42ca39..038f7be 100644 --- a/home.nix +++ b/home.nix @@ -217,8 +217,10 @@ }; # Neovim Configuration - xdg.configFile."nvim".source = builtins.fetchGit { - url = "https://code.softinio.com/softinio/nvim-config"; + xdg.configFile."nvim".source = pkgs.fetchFromGitHub { + owner = "softinio"; + repo = "nvim-config"; rev = "ba28bef49a6ec11692d5bdb4949fc484139c8fa5"; + sha256 = "sha256-0I4yOFbcL9peHvKm8I9LXE2R9i54NvdDO5QJ5oPXTkU="; }; }