From 46a0c5ebbefd9315def3f0d744bf4533711a5f8b Mon Sep 17 00:00:00 2001 From: nicoo Date: Wed, 13 Sep 2023 10:25:28 +0000 Subject: [PATCH 1/2] nixos/below: Document maintainer --- nixos/modules/services/monitoring/below.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/monitoring/below.nix b/nixos/modules/services/monitoring/below.nix index 92ee3882cac..4a7135162ac 100644 --- a/nixos/modules/services/monitoring/below.nix +++ b/nixos/modules/services/monitoring/below.nix @@ -103,4 +103,6 @@ in { }; }; }; + + meta.maintainers = with lib.maintainers; [ nicoo ]; } From 9d27026328a238fbb8f137a0b122ec673e9fb139 Mon Sep 17 00:00:00 2001 From: nicoo Date: Wed, 13 Sep 2023 10:25:53 +0000 Subject: [PATCH 2/2] nixos/auto-cpufreq: Add nicoo to maintainers --- nixos/modules/services/hardware/auto-cpufreq.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/hardware/auto-cpufreq.nix b/nixos/modules/services/hardware/auto-cpufreq.nix index cf27bdd8b6e..9c69ba8920f 100644 --- a/nixos/modules/services/hardware/auto-cpufreq.nix +++ b/nixos/modules/services/hardware/auto-cpufreq.nix @@ -44,5 +44,8 @@ in { }; # uses attributes of the linked package - meta.buildDocsInSandbox = false; + meta = { + buildDocsInSandbox = false; + maintainers = with lib.maintainers; [ nicoo ]; + }; }