Moved env to shell

This commit is contained in:
Jan-Bulthuis 2025-02-08 23:25:05 +01:00
parent 944d74060e
commit f1f4255d7d
2 changed files with 17 additions and 11 deletions

View File

@ -1,11 +0,0 @@
{ lib, ... }:
with lib;
{
options = {
env = mkOption {
type = types.attrsOf types.str;
default = [ ];
};
};
}

17
shell-modules/shell.nix Normal file
View File

@ -0,0 +1,17 @@
{ lib, ... }:
with lib;
{
options = {
env = mkOption {
type = types.attrsOf types.str;
default = [ ];
};
packages = mkOption {
type = types.listOf types.package;
default = [ ];
description = "Packages to install";
};
};
}