Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions modules/dev.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# feature: development environment & tools
#
# This file is an anti-pattern because the toolchains defined here can break
# when a specific version is needed for a program (i.e. Node 18 needed but 24
# is the one globally defined). This is especially true with pkg-config, or
# other dependency routing tools.
# I am conflicted between the practicality of having global tools like this,
# and the correct way, which is a devShell with the correct deps and direnv
# binding.
# If I somehow find a better way to tackle this problem, I'll implement it, but
# in this meantime, I'm leaning towards convenience on this one.
{self, ...}: {
flake.nixosModules.dev = {
lib,
Expand Down
Loading