diff options
author | lassulus <lassulus@lassul.us> | 2017-12-15 09:51:09 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-12-15 09:51:09 +0100 |
commit | ed6ae28e2de446bc4a56aa3eec133e1f0476b0ad (patch) | |
tree | bc5fe985bf327a8791a68cf30f135ad5e847c8de /lib | |
parent | 68274e48c9c38286d1e4e7c73bcd3c1103d47a87 (diff) | |
parent | 7f10d9526c3418197e198578eb5c4d8e7eadfc2e (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types.nix | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix index c3b14d807..b85794925 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -231,7 +231,12 @@ rec { source = submodule ({ config, ... }: { options = { type = let - types = ["file" "git" "symlink"]; + types = [ + "file" + "git" + "pass" + "symlink" + ]; in mkOption { type = enum types; default = let @@ -255,6 +260,10 @@ rec { type = nullOr git-source; default = null; }; + pass = mkOption { + type = nullOr pass-source; + default = null; + }; symlink = let symlink-target = (symlink-source.getSubOptions "FIXME").target.type; in mkOption { @@ -287,6 +296,17 @@ rec { }; }; + pass-source = submodule { + options = { + dir = mkOption { + type = absolute-pathname; + }; + name = mkOption { + type = pathname; # TODO relative-pathname + }; + }; + }; + symlink-source = submodule { options = { target = mkOption { |