aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-01 11:52:12 -0700
committerFuwn <[email protected]>2024-09-01 11:52:12 -0700
commitdea81d9189a094b08a6107cdb430fc952406cca5 (patch)
tree57972ffc1edb36fc63f424520ec8ccf3b71c0483
parentchore(nix): add shell.nix (diff)
downloaddue.moe-dea81d9189a094b08a6107cdb430fc952406cca5.tar.xz
due.moe-dea81d9189a094b08a6107cdb430fc952406cca5.zip
format(nix): format shell.nix
-rw-r--r--shell.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell.nix b/shell.nix
index bdbe688d..a2f9e8b1 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,9 +1,9 @@
-{ pkgs ? import <nixpkgs> { }
-,
+{
+ pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
- pkgs.bun
- pkgs.just
+ bun
+ just
];
}