Added env helper

This commit is contained in:
Jan-Bulthuis 2025-02-08 23:16:50 +01:00
parent ffc4e6a90b
commit 944d74060e
1 changed files with 11 additions and 0 deletions

11
shell-modules/env.nix Normal file
View File

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