bitmagnet/flake.nix
mgdigital 309e3b892b
Some checks are pending
Checks / lint (push) Waiting to run
Checks / test (push) Waiting to run
Checks / generated (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Webui revamp (#280)
2024-10-14 17:04:28 +01:00

32 lines
701 B
Nix

{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
formatter = pkgs.alejandra;
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
bundler
go_1_22
go-task
golangci-lint
jekyll
nodejs_22
nodePackages.prettier
protobuf
protoc-gen-go
];
};
};
});
}