mirror of
https://github.com/nix-community/home-manager
synced 2024-12-04 17:09:47 +01: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;
|
githubId = 298109;
|
||||||
name = "Lily Foster";
|
name = "Lily Foster";
|
||||||
};
|
};
|
||||||
|
lheckemann = {
|
||||||
|
name = "Linus Heckemann";
|
||||||
|
email = "git@sphalerite.org";
|
||||||
|
github = "lheckemann";
|
||||||
|
githubId = 341954;
|
||||||
|
};
|
||||||
loicreynier = {
|
loicreynier = {
|
||||||
name = "Loïc Reynier";
|
name = "Loïc Reynier";
|
||||||
email = "loic@loireynier.fr";
|
email = "loic@loireynier.fr";
|
||||||
|
|
|
@ -5,7 +5,7 @@ let
|
||||||
cfg = config.services.ssh-agent;
|
cfg = config.services.ssh-agent;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = [ lib.maintainers.lheckemann ];
|
meta.maintainers = [ lib.hm.maintainers.lheckemann ];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
services.ssh-agent = {
|
services.ssh-agent = {
|
||||||
|
|
Loading…
Reference in a new issue