diff options
author | lassulus <lass@aidsballs.de> | 2015-07-28 20:28:21 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-07-28 20:28:21 +0200 |
commit | aa3a158c25d436643144b24d47a10e2e6d0660eb (patch) | |
tree | b5e713e74a49854b3bf71641a9837dfcc3854136 /3modules/lass/sshkeys.nix | |
parent | 7acd1262519d8f15c8eb89a0dce968eb26d6b7d4 (diff) |
lass: port everything to stockholm
Diffstat (limited to '3modules/lass/sshkeys.nix')
-rw-r--r-- | 3modules/lass/sshkeys.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/3modules/lass/sshkeys.nix b/3modules/lass/sshkeys.nix deleted file mode 100644 index 5f1c606..0000000 --- a/3modules/lass/sshkeys.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ lib, ... }: - -with lib; - -{ - options = { - sshKeys = mkOption { - type = types.attrsOf (types.submodule ( - { config, ... }: - { - options = { - pub = mkOption { - type = types.str; - description = "Public part of the ssh key."; - }; - - priv = mkOption { - type = types.str; - description = "Private part of the ssh key."; - }; - }; - })); - description = "collection of ssh-keys"; - }; - }; -} |