mirror of
https://github.com/ryantm/agenix.git
synced 2024-12-22 23:58:29 +03:00
Merge pull request #30 from cole-h/cond-module
modules/age: build local rage if pkgs.rage is older than 0.5.0
This commit is contained in:
commit
9eb981eeb5
1 changed files with 23 additions and 16 deletions
|
@ -4,7 +4,12 @@ with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.age;
|
cfg = config.age;
|
||||||
rage = pkgs.callPackage ../pkgs/rage.nix {};
|
|
||||||
|
# we need at least rage 0.5.0 to support ssh keys
|
||||||
|
rage =
|
||||||
|
if lib.versionOlder pkgs.rage.version "0.5.0"
|
||||||
|
then pkgs.callPackage ./rage.nix { }
|
||||||
|
else pkgs.rage;
|
||||||
ageBin = "${rage}/bin/rage";
|
ageBin = "${rage}/bin/rage";
|
||||||
|
|
||||||
users = config.users.users;
|
users = config.users.users;
|
||||||
|
@ -71,7 +76,8 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.age = {
|
options.age = {
|
||||||
secrets = mkOption {
|
secrets = mkOption {
|
||||||
type = types.attrsOf secretType;
|
type = types.attrsOf secretType;
|
||||||
|
@ -82,7 +88,8 @@ in {
|
||||||
};
|
};
|
||||||
sshKeyPaths = mkOption {
|
sshKeyPaths = mkOption {
|
||||||
type = types.listOf types.path;
|
type = types.listOf types.path;
|
||||||
default = if config.services.openssh.enable then
|
default =
|
||||||
|
if config.services.openssh.enable then
|
||||||
map (e: e.path) (lib.filter (e: e.type == "rsa" || e.type == "ed25519") config.services.openssh.hostKeys)
|
map (e: e.path) (lib.filter (e: e.type == "rsa" || e.type == "ed25519") config.services.openssh.hostKeys)
|
||||||
else [ ];
|
else [ ];
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue