Commit edc607c7a3d8

Vincent Demeester <vincent@sbr.pm>
2025-02-01 06:00:27
users/vincent: add lisp.nix and uv in python.nix
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent dae4d00
Changed files (3)
users/vincent/dev/default.nix
@@ -4,6 +4,7 @@
   imports = [
     ./go.nix
     ./js.nix
+    ./lisp.nix
     ./mr.nix
     ./nix.nix
     ./python.nix
users/vincent/dev/lisp.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }:
+
+{
+  home.packages = with pkgs; [
+    roswell
+    sbcl
+  ];
+}
users/vincent/dev/python.nix
@@ -5,5 +5,6 @@
     python3
     pipenv
     python3Packages.python-lsp-server
+    uv
   ];
 }