From c13935fa92743a23865d44ca14e52c143e0c4a2a Mon Sep 17 00:00:00 2001 From: cerberus Date: Thu, 20 Nov 2025 17:16:04 +0100 Subject: [PATCH] build error --- nixos/modules/users/nvim.nix | 5 +++-- nixos/modules/users/users.nix | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/modules/users/nvim.nix b/nixos/modules/users/nvim.nix index c08146c..e3af92c 100644 --- a/nixos/modules/users/nvim.nix +++ b/nixos/modules/users/nvim.nix @@ -1,10 +1,11 @@ { pkgs, + config, ... }: let nvf = import (builtins.fetchTarball { - url = "https://github.com/notashelf/nvf/archive/v0.7.tar.gz"; + url = "https://github.com/notashelf/nvf/archive/v0.8.tar.gz"; # Optionally, you can add 'sha256' for verification and caching # sha256 = ""; }); @@ -12,7 +13,7 @@ in{ imports = [ nvf.nixosModules.nvf ]; - + programs.nvf = { enable = true; }; diff --git a/nixos/modules/users/users.nix b/nixos/modules/users/users.nix index eebad50..cdf377b 100644 --- a/nixos/modules/users/users.nix +++ b/nixos/modules/users/users.nix @@ -5,6 +5,7 @@ in { (import ./zsh.nix {inherit pkgs user;}) ./zoxide.nix (import ./packages.nix {inherit pkgs user;}) + ./nvim.nix ]; # Define user account and dont forget to set a password with 'passwd'