vikunja/flake.nix
kolaente 4d78ae7fa8
All checks were successful
continuous-integration/drone/push Build is passing
chore(dev): move nix flake to top level, add api tooling
2024-04-07 12:16:13 +02:00

19 lines
419 B
Nix

{
description = "Vikunja dev environment";
outputs = { self, nixpkgs }:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
defaultPackage.x86_64-linux =
pkgs.mkShell { buildInputs = with pkgs; [
# General tools
git-cliff
# Frontend tools
nodePackages.pnpm cypress
# API tools
go golangci-lint mage
];
};
};
}