Commit b57fdd1eea17

Vincent Demeester <vincent@sbr.pm>
2025-07-04 11:58:25
systems/kyushu/home: add some lisp packages
Might move them to dev someday, but not needed for now. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0483e23
Changed files (2)
systems
kyushu
users
vincent
systems/kyushu/home.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
 {
   imports = [
     ../../home/common/dev/containers.nix
@@ -6,7 +6,13 @@
 
   home.file.".gmailctl/config.jsonnet".source = ./config.jsonnet;
   home.file.".gmailctl/gmailctl.libsonnet".source = ./gmailctl.libsonnet;
-  home.packages = with pkgs; [ gmailctl ];
+  home.packages = with pkgs; [
+    gmailctl
+
+    # lisp
+    roswell
+    sbcl
+  ];
 
   # systemd.user.services.battery-monitor = {
   #   Unit = {
users/vincent/dev/lisp.nix
@@ -1,8 +0,0 @@
-{ pkgs, ... }:
-
-{
-  home.packages = with pkgs; [
-    roswell
-    sbcl
-  ];
-}