about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2023-09-15 14:34:36 +0200
committerGitHub <noreply@github.com>2023-09-15 14:34:36 +0200
commit11eae28c2778aa34ac0cc2564e503e5d7847001c (patch)
treea66a6029d7221f85ed40ec36daf54b9970d12939 /nixos
parenta5c5269da6b1f818736331845a575de3f0ce4c6b (diff)
parent9d27026328a238fbb8f137a0b122ec673e9fb139 (diff)
Merge pull request #254922 from nbraud/nixos/maintainer-nicoo
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/auto-cpufreq.nix5
-rw-r--r--nixos/modules/services/monitoring/below.nix2
2 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/auto-cpufreq.nix b/nixos/modules/services/hardware/auto-cpufreq.nix
index cf27bdd8b6eb7..9c69ba8920f35 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 ];
+  };
 }
diff --git a/nixos/modules/services/monitoring/below.nix b/nixos/modules/services/monitoring/below.nix
index 92ee3882cac87..4a7135162ac44 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 ];
 }