mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
39 lines
1,007 B
Nix
39 lines
1,007 B
Nix
|
{
|
||
|
description = "Private inputs for development purposes. These are used by the top level flake in the `dev` partition, but do not appear in consumers' lock files.";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
|
||
|
home-manager = {
|
||
|
url = "github:nix-community/home-manager";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
|
||
|
nix-darwin = {
|
||
|
url = "github:lnl7/nix-darwin";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
|
||
|
devshell = {
|
||
|
url = "github:numtide/devshell";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
|
||
|
treefmt-nix = {
|
||
|
url = "github:numtide/treefmt-nix";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
|
||
|
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
|
||
|
|
||
|
git-hooks = {
|
||
|
url = "github:cachix/git-hooks.nix";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
inputs.flake-compat.follows = "flake-compat";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# This flake is only used for its inputs.
|
||
|
outputs = inputs: { };
|
||
|
}
|