Compare commits

...

3 Commits

Author SHA1 Message Date
3399947eb0 Add start command explicitly to nix run default app 2025-08-08 19:29:07 -07:00
28e9c06d92 Set elixirLS dir to server/ 2025-08-08 19:06:26 -07:00
014fd6eb4e Fix flake.nix head error 2025-08-08 19:05:16 -07:00
2 changed files with 6 additions and 2 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"elixirLS.projectDir": "server"
}

View File

@ -25,6 +25,7 @@
buildInputs = with pkgs; [ buildInputs = with pkgs; [
# Elixir/Erlang for server # Elixir/Erlang for server
elixir elixir
elixir-ls
erlang erlang
# File watching for Phoenix live reload # File watching for Phoenix live reload
@ -48,7 +49,7 @@
shellHook = '' shellHook = ''
echo "Systant development environment loaded" echo "Systant development environment loaded"
echo "Elixir: $(elixir --version | head -1)" echo "Elixir: $(elixir --version | tail -1)"
echo "Node.js: $(node --version)" echo "Node.js: $(node --version)"
echo "" echo ""
echo "Directories:" echo "Directories:"
@ -72,7 +73,7 @@
apps = { apps = {
default = { default = {
type = "app"; type = "app";
program = "${self.packages.${system}.default}/bin/systant"; program = "${self.packages.${system}.default}/bin/systant start";
}; };
}; };
} }