summary refs log tree commit diff
path: root/nixos/tests/munin.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 22:47:38 +0100
committerGitHub <noreply@github.com>2021-01-10 22:47:38 +0100
commitd085417683cedabb1eaf420ca0eb128ecfb3a175 (patch)
treea6a6b204e97902a530e5fe6aaf2fd1e0c8ecf505 /nixos/tests/munin.nix
parent07f8292f88f87222b67d2eea7665ab3115aa7512 (diff)
parent25bef2d8f91edfa80b86e1b777c520021a82131e (diff)
Merge pull request #108970 from xaverdh/pkgs-stdenv-lib
treewide: simplify pkgs.stdenv.lib -> pkgs.lib
Diffstat (limited to 'nixos/tests/munin.nix')
-rw-r--r--nixos/tests/munin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix
index 7b674db7768d9..4ec17e0339df0 100644
--- a/nixos/tests/munin.nix
+++ b/nixos/tests/munin.nix
@@ -3,7 +3,7 @@
 
 import ./make-test-python.nix ({ pkgs, ...} : {
   name = "munin";
-  meta = with pkgs.stdenv.lib.maintainers; {
+  meta = with pkgs.lib.maintainers; {
     maintainers = [ domenkozar eelco ];
   };
 
@@ -27,7 +27,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
           };
 
           # increase the systemd timer interval so it fires more often
-          systemd.timers.munin-cron.timerConfig.OnCalendar = pkgs.stdenv.lib.mkForce "*:*:0/10";
+          systemd.timers.munin-cron.timerConfig.OnCalendar = pkgs.lib.mkForce "*:*:0/10";
         };
     };