diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-11 19:56:15 +1100 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-16 23:19:11 +1100 |
| commit | d2498644fd84360e46ad90de3029066ad441e15a (patch) | |
| tree | 64c07f6f9cfcf8628667054242c0a0d5116b6cab /modules | |
| parent | f86f158efd4bab8dce3e207e4621f1df3a760b7a (diff) | |
nix-daemon: remove `with lib;`
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/services/nix-daemon.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/services/nix-daemon.nix b/modules/services/nix-daemon.nix index 6718ac0..6f93131 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 { |
