init: repo with steps of learning htmx

This commit is contained in:
efim
2023-06-25 12:18:37 +00:00
commit 2727bbc4e6
5 changed files with 83 additions and 0 deletions

20
flake.nix Normal file
View File

@@ -0,0 +1,20 @@
{
description = "learning htmx";
inputs.nixpkgs.url = "github:nixos/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = pkgs.mkShell {
buildInputs = [
pkgs.sbt
pkgs.scalafmt
];
};
}
);
# see https://serokell.io/blog/practical-nix-flakes
}