about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMoraxyc <i@qaq.li>2024-05-16 19:53:25 +0800
committerMoraxyc <i@qaq.li>2024-05-16 19:53:25 +0800
commite704b9419197844adba884d701b99958e3bb07ec (patch)
tree17b14d122c146c9710912767a878649223449f77 /nixos
parentbcd8880c1dce186a9ff899a3c39a57f32a185bd7 (diff)
nixos/atop: fix mkSystemd
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/atop.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/atop.nix b/nixos/modules/programs/atop.nix
index be82e432474be..3738f926ca3d8 100644
--- a/nixos/modules/programs/atop.nix
+++ b/nixos/modules/programs/atop.nix
@@ -120,8 +120,8 @@ in
               wantedBy = [ (if type == "services" then "multi-user.target" else if type == "timers" then "timers.target" else null) ];
             };
           };
-          mkService = lib.mkSystemd "services";
-          mkTimer = lib.mkSystemd "timers";
+          mkService = mkSystemd "services";
+          mkTimer = mkSystemd "timers";
         in
         {
           packages = [ atop (lib.mkIf cfg.netatop.enable cfg.netatop.package) ];