From f5aaefbb6c48aada4a90a0e06210739d8ec1e837 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 29 Sep 2014 09:45:59 -0400 Subject: [PATCH] More pkgs.lib -> lib fixes --- nixos/modules/programs/uim.nix | 4 ++-- nixos/modules/services/network-filesystems/yandex-disk.nix | 4 ++-- nixos/modules/services/networking/atftpd.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/modules/programs/uim.nix b/nixos/modules/programs/uim.nix index 237da3415dc..fc25ba6f969 100644 --- a/nixos/modules/programs/uim.nix +++ b/nixos/modules/programs/uim.nix @@ -1,6 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: -with pkgs.lib; +with lib; let cfg = config.uim; diff --git a/nixos/modules/services/network-filesystems/yandex-disk.nix b/nixos/modules/services/network-filesystems/yandex-disk.nix index df9626d17c9..982b6ca5ea7 100644 --- a/nixos/modules/services/network-filesystems/yandex-disk.nix +++ b/nixos/modules/services/network-filesystems/yandex-disk.nix @@ -1,6 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: -with pkgs.lib; +with lib; let diff --git a/nixos/modules/services/networking/atftpd.nix b/nixos/modules/services/networking/atftpd.nix index ab9f8650f0f..47465ba948a 100644 --- a/nixos/modules/services/networking/atftpd.nix +++ b/nixos/modules/services/networking/atftpd.nix @@ -1,8 +1,8 @@ # NixOS module for atftpd TFTP server -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: -with pkgs.lib; +with lib; let