mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
ssh-agent: fix evaluation of maintainer field
(cherry picked from commit 8be82697f7
)
This commit is contained in:
parent
f8142df16b
commit
208df2e558
2 changed files with 7 additions and 1 deletions
|
@ -222,6 +222,12 @@
|
|||
githubId = 298109;
|
||||
name = "Lily Foster";
|
||||
};
|
||||
lheckemann = {
|
||||
name = "Linus Heckemann";
|
||||
email = "git@sphalerite.org";
|
||||
github = "lheckemann";
|
||||
githubId = 341954;
|
||||
};
|
||||
loicreynier = {
|
||||
name = "Loïc Reynier";
|
||||
email = "loic@loireynier.fr";
|
||||
|
|
|
@ -5,7 +5,7 @@ let
|
|||
cfg = config.services.ssh-agent;
|
||||
|
||||
in {
|
||||
meta.maintainers = [ lib.maintainers.lheckemann ];
|
||||
meta.maintainers = [ lib.hm.maintainers.lheckemann ];
|
||||
|
||||
options = {
|
||||
services.ssh-agent = {
|
||||
|
|
Loading…
Reference in a new issue