summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-21 22:07:57 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-21 22:07:57 -0400
commit073cbad97b884b9db357382032a4eb2dc03fd2de (patch)
tree0290fc9ae2f36092d7bc1b004e4dce3a4254b404
parentupdate commits, unityhub broken (diff)
downloaddotfiles-nix-073cbad97b884b9db357382032a4eb2dc03fd2de.tar.gz
dotfiles-nix-073cbad97b884b9db357382032a4eb2dc03fd2de.tar.bz2
dotfiles-nix-073cbad97b884b9db357382032a4eb2dc03fd2de.zip
add dev shell to flake
-rw-r--r--flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 5129a15..349561f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -73,5 +73,10 @@
pkgs: system:
pkgs.alejandra
);
+
+ devShell = perSystem (
+ pkgs: system:
+ pkgs.mkShell {}
+ );
};
}