Skip to content

Commit fb34393

Browse files
committed
chore: update (and refactor) flake inputs
1 parent 2442765 commit fb34393

File tree

2 files changed

+76
-188
lines changed

2 files changed

+76
-188
lines changed

flake.lock

Lines changed: 48 additions & 178 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,35 @@
22
description = "Prototype tooling for deploying PostgreSQL";
33

44
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";
116
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+
};
1634
};
1735

1836
outputs =

0 commit comments

Comments
 (0)