summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authortuturuu <zedddiezxc@gmail.com>2026-01-10 00:22:28 +0100
committertuturuu <zedddiezxc@gmail.com>2026-01-10 00:22:28 +0100
commitf722256a8881c3d0813901b6be2c7afdcdc1fb74 (patch)
tree6d81f0257643d925047f902c8ff0c3bb4c73ddd8 /shell.nix
parentaf4343a3002265013b98223be2273ff7db8d137e (diff)
Remove local setup from repo; autofmt shell.nix
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index 4d96b49..d484ed5 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,10 +1,12 @@
-{ pkgs ? import <nixpkgs> {} }:
+{
+ pkgs ? import <nixpkgs> { },
+}:
pkgs.mkShell {
buildInputs = with pkgs; [
- rustup
+ rustup
pkg-config
rust-analyzer
gcc
- ];
+ ];
}