From f722256a8881c3d0813901b6be2c7afdcdc1fb74 Mon Sep 17 00:00:00 2001 From: tuturuu Date: Sat, 10 Jan 2026 00:22:28 +0100 Subject: Remove local setup from repo; autofmt shell.nix --- .vscode/launch.json | 58 ----------------------------------------------------- shell.nix | 8 +++++--- 2 files changed, 5 insertions(+), 61 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 2519d97..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Debug executable 'init'", - "type": "lldb", - "request": "launch", - "cargo": { - "args": [ - "run", - "--bin=init", - "--package=init" - ] - }, - "args": [] - }, - { - "name": "Debug unit tests in executable 'init'", - "type": "lldb", - "request": "launch", - "cargo": { - "args": [ - "test", - "--bin=init", - "--package=init" - ] - } - }, - { - "name": "Debug executable 'vegilctl'", - "type": "lldb", - "request": "launch", - "cargo": { - "args": [ - "run", - "--bin=vegilctl", - "--package=vegilctl" - ] - }, - "args": [] - }, - { - "name": "Debug unit tests in executable 'vegilctl'", - "type": "lldb", - "request": "launch", - "cargo": { - "args": [ - "test", - "--bin=vegilctl", - "--package=vegilctl" - ] - } - } - ] -} \ No newline at end of file diff --git a/shell.nix b/shell.nix index 4d96b49..d484ed5 100644 --- a/shell.nix +++ b/shell.nix @@ -1,10 +1,12 @@ -{ pkgs ? import {} }: +{ + pkgs ? import { }, +}: pkgs.mkShell { buildInputs = with pkgs; [ - rustup + rustup pkg-config rust-analyzer gcc - ]; + ]; } -- cgit v1.2.3