Skip to content

Commit 4cd0fc4

Browse files
authored
Merge branch 'main' into renovate/lock-file-maintenance
2 parents ad18d08 + 10eea46 commit 4cd0fc4

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake .#dockdns

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v6
2525
with:
26-
version: v1.60
26+
version: v1.64
2727

2828
build-and-push-image:
2929
runs-on: ubuntu-latest

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ bin/
3333
tmp/
3434

3535
# Nix build result
36-
result
36+
result
37+
38+
# direnv
39+
.direnv/

flake.lock

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

flake.nix

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,18 @@
2323
devShells = forAllSystems (system: let
2424
pkgs = nixpkgs.legacyPackages.${system};
2525
unstable = nixpkgs-unstable.legacyPackages.${system};
26-
in {
27-
default = pkgs.mkShell {
28-
packages = with pkgs;
29-
[
26+
in rec {
27+
default = dockdns;
28+
dockdns = pkgs.mkShell {
29+
packages =
30+
(with pkgs; [
3031
go
3132
golangci-lint
3233
air
3334
gopls
3435
gotools
3536
delve
36-
]
37+
])
3738
++ (with unstable; [
3839
templ
3940
]);

0 commit comments

Comments
 (0)