modules updates

This commit is contained in:
2024-04-28 11:24:47 -06:00
parent e23ce200a5
commit 4bcb766dec
11 changed files with 102 additions and 38 deletions

12
modules/shell.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./shell/exercism.nix ./dev/python.nix ./dev/haskell.nix ];
my = {
shell = { exercism.enable = lib.mkDefault false; };
dev = {
haskell.enable = lib.mkDefault false;
python.enable = lib.mkDefault false;
};
};
}