From d2498644fd84360e46ad90de3029066ad441e15a Mon Sep 17 00:00:00 2001 From: Michael Hoang Date: Mon, 11 Nov 2024 19:56:15 +1100 Subject: [PATCH] nix-daemon: remove `with lib;` --- modules/services/nix-daemon.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/services/nix-daemon.nix b/modules/services/nix-daemon.nix index 6718ac05..6f931315 100644 --- a/modules/services/nix-daemon.nix +++ b/modules/services/nix-daemon.nix @@ -1,9 +1,9 @@ -{ config, lib, pkgs, ... }: - -with lib; +{ config, lib, ... }: let cfg = config.services.nix-daemon; + + inherit (lib) mkDefault mkIf mkMerge mkOption types; in {