diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix index 5e99b1e..ce95a03 100644 --- a/flake.nix +++ b/flake.nix @@ -12,12 +12,11 @@ impermanence.url = "github:nix-community/impermanence"; # inputs for following - nixneovim = { - url = "github:nixneovim/nixneovim"; + nixvim = { + url = "github:nix-community/nixvim"; inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; - home-manager.follows = "home-manager"; }; }; lanzaboote = { @@ -112,14 +111,14 @@ #grades, prismlauncher, lanzaboote, - nixneovim, + nixvim, impermanence, ... } @ attrs: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; - overlays = [nixneovim.overlays.default]; + #overlays = [nixvim.overlays.default]; }; sysLib = shell_library.lib.${system}; defaultModules = [ @@ -131,7 +130,7 @@ useGlobalPkgs = true; useUserPackages = true; users.sils = import ./users/sils; - extraSpecialArgs = {inherit pkgs system sysLib river_init_lesser yambar_cpu yambar_memory prismlauncher nixneovim impermanence;}; + extraSpecialArgs = {inherit pkgs system sysLib river_init_lesser yambar_cpu yambar_memory prismlauncher nixvim impermanence;}; }; } ]; |