nixneovim.inputs follow upstream

This commit is contained in:
Anthony Cicchetti 2023-07-16 11:04:20 -04:00
parent a4a726897b
commit 8e81739ab6
3 changed files with 26 additions and 56 deletions

6
flake.lock generated
View file

@ -8,11 +8,11 @@
"pre-commit-hooks": "pre-commit-hooks"
},
"locked": {
"lastModified": 1689433662,
"narHash": "sha256-JZT7AJC4/SRV7K6RABjKQ9mXFRhH0ebIFzbVU0soMdM=",
"lastModified": 1689504341,
"narHash": "sha256-btK/nUaxB6HBCiuhnebiCTnohatHElVwWrBOWP+oWpI=",
"owner": "cachix",
"repo": "devenv",
"rev": "b409e6a6bb6c4734e11357945f9888771c5a7bc5",
"rev": "b9c9d83e89c0405ab02880132a0601911c477250",
"type": "github"
},
"original": {

View file

@ -116,32 +116,11 @@
]
},
"locked": {
"lastModified": 1689447223,
"narHash": "sha256-A5vQBtWYamvGf3c2IEhAmwIkXBzuzrkpnMYbLvc+lEY=",
"lastModified": 1689495092,
"narHash": "sha256-yZu2j5FpLZEPhJQQutMCPTxa1VMigLPabLYvLTq6ASM=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "f5b03feb33629cb2b6dd513935637e8cc718a5ba",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"home-manager_2": {
"inputs": {
"nixpkgs": [
"nixneovim",
"nixpkgs"
]
},
"locked": {
"lastModified": 1689134369,
"narHash": "sha256-0G9dutIvhS/WUr3Awcnqw71g8EVVvvkOhVDnDDbY4Fw=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "e42fb59768f0305085abde0dd27ab5e0cc15420c",
"rev": "2f84579a70b8c74e5ebb37299a0c3ba279f09382",
"type": "github"
},
"original": {
@ -212,11 +191,11 @@
]
},
"locked": {
"lastModified": 1688874465,
"narHash": "sha256-BUwl+tq40EjkufTZkqf3lWFzxOA/mYBTHz+p5uJtjaY=",
"lastModified": 1689479461,
"narHash": "sha256-Ak+PTYdmfOQEmcOsOEnrwqdP0HP20PLraRwpjSAzSeE=",
"owner": "Mic92",
"repo": "nix-index-database",
"rev": "757114749d4613cf71f3748e780a1be8a67a5d3c",
"rev": "22fa44b7f14684d184733fb26a628f3878ff7aaf",
"type": "github"
},
"original": {
@ -228,19 +207,23 @@
"nixneovim": {
"inputs": {
"flake-utils": "flake-utils_2",
"home-manager": "home-manager_2",
"home-manager": [
"home-manager"
],
"nix-flake-tests": "nix-flake-tests",
"nixneovimplugins": "nixneovimplugins",
"nixpkgs": "nixpkgs_2",
"nixpkgs": [
"nixpkgs"
],
"nmd": "nmd",
"nmt": "nmt"
},
"locked": {
"lastModified": 1689258189,
"narHash": "sha256-Ufy02ZXCAzINoD3ued142vQu0BPw3t5wqZNFjkL73Ms=",
"lastModified": 1689517278,
"narHash": "sha256-KKrD0JYPfe3RwpyOuCpyWQpCTIpa+SkAWvMMelh9s7c=",
"owner": "nixneovim",
"repo": "nixneovim",
"rev": "96ebaeb3e4caae77c227be0f4bac3826a01eeefa",
"rev": "cf02e50a7a5341adb8d769c84a2adf029b0cee4a",
"type": "github"
},
"original": {
@ -325,27 +308,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1689192006,
"narHash": "sha256-QM0f0d8oPphOTYJebsHioR9+FzJcy1QNIzREyubB91U=",
"lastModified": 1689444953,
"narHash": "sha256-0o56bfb2LC38wrinPdCGLDScd77LVcr7CrH1zK7qvDg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2de8efefb6ce7f5e4e75bdf57376a96555986841",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1689373857,
"narHash": "sha256-mtBksyvhhT98Zsm9tYHuMKuLwUKDwv+BGTl6K5nOGhY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "dfdbcc428f365071f0ca3888f6ec8c25c3792885",
"rev": "8acef304efe70152463a6399f73e636bcc363813",
"type": "github"
},
"original": {
@ -421,7 +388,7 @@
"home-manager": "home-manager",
"nix-index-database": "nix-index-database",
"nixneovim": "nixneovim",
"nixpkgs": "nixpkgs_3"
"nixpkgs": "nixpkgs_2"
}
},
"systems": {

View file

@ -17,6 +17,10 @@
};
nixneovim = {
url = "github:nixneovim/nixneovim";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
};
@ -37,7 +41,6 @@
system:
import nixpkgs {
inherit system;
# overlays = overlays;
config = {allowUnfree = true;};
overlays = [nixneovim.overlays.default];
}