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

View File

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

View File

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