vikunja/flake.nix
kolaente a6c2c817cd
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update flake
2024-06-13 14:41:09 +02:00

21 lines
445 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
pnpm cypress
# API tools
go golangci-lint mage
# Desktop
electron
];
};
};
}