|
2 | 2 | description = "Prototype tooling for deploying PostgreSQL"; |
3 | 3 |
|
4 | 4 | inputs = { |
5 | | - nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; |
6 | | - flake-utils.url = "github:numtide/flake-utils"; |
7 | | - nix2container.url = "github:nlewo/nix2container"; |
8 | | - nix-editor.url = "github:snowfallorg/nix-editor"; |
9 | | - rust-overlay.url = "github:oxalica/rust-overlay"; |
10 | | - nix-fast-build.url = "github:Mic92/nix-fast-build"; |
| 5 | + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; |
11 | 6 | flake-parts.url = "github:hercules-ci/flake-parts"; |
12 | | - treefmt-nix.url = "github:numtide/treefmt-nix"; |
13 | | - treefmt-nix.inputs.nixpkgs.follows = "nixpkgs"; |
14 | | - git-hooks.url = "github:cachix/git-hooks.nix"; |
15 | | - git-hooks.inputs.nixpkgs.follows = "nixpkgs"; |
| 7 | + flake-utils.url = "github:numtide/flake-utils"; |
| 8 | + treefmt-nix = { |
| 9 | + url = "github:numtide/treefmt-nix"; |
| 10 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 11 | + }; |
| 12 | + nix-editor = { |
| 13 | + url = "github:snowfallorg/nix-editor"; |
| 14 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 15 | + }; |
| 16 | + nix-fast-build = { |
| 17 | + url = "github:Mic92/nix-fast-build"; |
| 18 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 19 | + inputs.flake-parts.follows = "flake-parts"; |
| 20 | + inputs.treefmt-nix.follows = "treefmt-nix"; |
| 21 | + }; |
| 22 | + nix2container = { |
| 23 | + url = "github:nlewo/nix2container"; |
| 24 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 25 | + }; |
| 26 | + rust-overlay = { |
| 27 | + url = "github:oxalica/rust-overlay"; |
| 28 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 29 | + }; |
| 30 | + git-hooks = { |
| 31 | + url = "github:cachix/git-hooks.nix"; |
| 32 | + inputs.nixpkgs.follows = "nixpkgs"; |
| 33 | + }; |
16 | 34 | }; |
17 | 35 |
|
18 | 36 | outputs = |
|
0 commit comments