fix: move environment out of nix

This commit is contained in:
punkfairie 2025-05-25 20:07:22 -07:00
parent 24ffd6d7ce
commit 8f12b248d5
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -51,18 +51,18 @@
# Garbage collection. # Garbage collection.
gc.automatic = true; gc.automatic = true;
# More useful repl.
environment.systemPackages = let
nrepl =
pkgs.writeShellScriptBin "nrepl"
# sh
''
nix repl "${toString ./.}/repl.nix" "$@"
'';
in [
nrepl
];
}; };
# More useful repl.
environment.systemPackages = let
nrepl =
pkgs.writeShellScriptBin "nrepl"
# sh
''
nix repl "${toString ./.}/repl.nix" "$@"
'';
in [
nrepl
];
}; };
} }