feat: switch from nix flakes to devenv

This commit is contained in:
kolaente
2024-08-12 12:17:31 +02:00
parent e2a87036e0
commit ad3c5fcee5
8 changed files with 200 additions and 48 deletions

30
devenv.nix Normal file
View File

@@ -0,0 +1,30 @@
{ pkgs, lib, config, inputs, ... }:
let
pkgs-unstable = import inputs.nixpkgs-unstable { system = pkgs.stdenv.system; };
in {
packages = with pkgs; [
# General tools
git-cliff
# Frontend tools
cypress
# API tools
golangci-lint mage
# Desktop
electron
];
languages = {
javascript = {
enable = true;
pnpm = {
enable = true;
package = pkgs-unstable.pnpm;
};
};
go = {
enable = true;
};
};
}