fix(nvim): use stable nixpkgs

This commit is contained in:
Michael Thomas 2024-07-04 12:05:48 -04:00
parent 2449eabf7c
commit a12483560a
3 changed files with 10 additions and 9 deletions

14
flake.lock generated
View File

@ -417,15 +417,16 @@
]
},
"locked": {
"lastModified": 1718141734,
"narHash": "sha256-cA+6l8ZCZ7MXGijVuY/1f55+wF/RT4PlTR9+g4bx86w=",
"lastModified": 1720042825,
"narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "892f76bd0aa09a0f7f73eb41834b8a904b6d0fad",
"rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "release-24.05",
"repo": "home-manager",
"type": "github"
}
@ -802,15 +803,16 @@
"treefmt-nix": "treefmt-nix"
},
"locked": {
"lastModified": 1718560097,
"narHash": "sha256-JI17CzgQbbzeB2H0n3G9N/HtTAMFSq2IFbRPnlJNTt8=",
"lastModified": 1719923896,
"narHash": "sha256-/hfE2x9NbT13d53o9uq6MuMipV19pJUQzpsZIhlvsiM=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "6ac0d2869d8d5a71547a504900f9199871d62506",
"rev": "d384cf656cb1b21d90eee1b007a6ade6f90768f5",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "nixos-24.05",
"repo": "nixvim",
"type": "github"
}

View File

@ -19,8 +19,7 @@
utils.url = "github:numtide/flake-utils";
nixvim = {
# url = "github:nix-community/nixvim/nixos-24.05";
url = "github:nix-community/nixvim";
url = "github:nix-community/nixvim/nixos-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay.url = "github:oxalica/rust-overlay";

View File

@ -7,7 +7,7 @@
nixvim = inputs.nixvim.legacyPackages.${system};
icons = import ./config/icons.nix;
nixvimModule = {
pkgs = inputs.unstable.legacyPackages.${system};
inherit pkgs;
module = import ./config;
extraSpecialArgs = {inherit icons;};
};