diff --git a/shell-modules/env.nix b/shell-modules/env.nix deleted file mode 100644 index ea842e5..0000000 --- a/shell-modules/env.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ lib, ... }: - -with lib; -{ - options = { - env = mkOption { - type = types.attrsOf types.str; - default = [ ]; - }; - }; -} diff --git a/shell-modules/shell.nix b/shell-modules/shell.nix new file mode 100644 index 0000000..64015a4 --- /dev/null +++ b/shell-modules/shell.nix @@ -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"; + }; + }; +}