feat: use different nixpkgs

This commit is contained in:
Youwen Wu 2024-08-24 22:17:41 -07:00
parent b4be742668
commit d3c24e0adc
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 8 additions and 9 deletions

View file

@ -170,16 +170,15 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1724224976, "lastModified": 1724558323,
"narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=", "narHash": "sha256-uPXidysk1BXSayGzpxDW8JUgGvLWS+L1CTlBV3xcQB4=",
"owner": "nixos", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c374d94f1536013ca8e92341b540eba4c22f9c62", "rev": "ba0c72cea47a45556ccd5bc566433bd1242a0f93",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -2,16 +2,16 @@
description = "Personal Neovim configuration."; description = "Personal Neovim configuration.";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs";
nixvim = { nixvim = {
url = "github:nix-community/nixvim"; url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
outputs = inputs @ { outputs = {
nixpkgs,
nixvim, nixvim,
nixpkgs,
... ...
}: { }: {
homeManagerModules.default = { homeManagerModules.default = {