dotfiles/.config/ags/shell.nix
2024-06-21 06:26:06 -05:00

15 lines
190 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
name = "ags-config";
nativeBuildInputs = [
];
buildInputs = [
stdenv
clojure
clojure-lsp
clj-kondo
];
}