Commit f02411282f0e
Changed files (1)
modules
profiles
modules/profiles/dev.lisp.nix
@@ -0,0 +1,19 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+let
+ cfg = config.profiles.dev.lisp;
+in
+{
+ options = {
+ profiles.dev.lisp = {
+ enable = mkEnableOption "Enable lisp development profile";
+ };
+ };
+ config = mkIf cfg.enable {
+ home-packages = with pkgs; [
+ sbcl
+ asdf
+ ];
+ };
+}