Lints and suggestions for the Nix programming language
at main 28 lines 826 B view raw
1{ 2 inputs = { 3 git-hooks = { 4 url = "github:cachix/git-hooks.nix"; 5 inputs = { 6 flake-compat.follows = "flake-compat_dedupe"; 7 gitignore.follows = "gitignore_dedupe"; 8 nixpkgs.follows = "nixpkgs_dedupe"; 9 }; 10 }; 11 make-shell = { 12 url = "github:nicknovitski/make-shell"; 13 inputs.flake-compat.follows = "flake-compat_dedupe"; 14 }; 15 nixpkgs_dedupe.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 16 files.url = "github:mightyiam/files"; 17 flake-compat_dedupe.url = "github:edolstra/flake-compat"; 18 gitignore_dedupe = { 19 url = "github:hercules-ci/gitignore.nix"; 20 inputs.nixpkgs.follows = "nixpkgs_dedupe"; 21 }; 22 treefmt = { 23 url = "github:numtide/treefmt-nix"; 24 inputs.nixpkgs.follows = "nixpkgs_dedupe"; 25 }; 26 }; 27 outputs = _: { }; 28}