treewide: remove 'with lib;'

This commit is contained in:
Felix Buehler 2025-09-21 18:40:36 +02:00
parent cf54323dc7
commit 78ae241387
53 changed files with 245 additions and 245 deletions

View file

@ -10,11 +10,11 @@ let
inherit (config.networking) domain;
in
{
options.my.services.aria2 = with lib; {
enable = mkEnableOption "Aria2 for downloads";
options.my.services.aria2 = {
enable = lib.mkEnableOption "Aria2 for downloads";
downloadDir = mkOption {
type = types.path;
downloadDir = lib.mkOption {
type = lib.types.path;
description = ''
Directory to store downloaded files.
'';