summary refs log tree commit diff
path: root/nixos/modules/services/system
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-07-20 19:36:12 +0000
committervolth <volth@volth.com>2018-07-20 19:38:19 +0000
commit6d2857a311a6586860cb0c70778b035c92d9c88c (patch)
tree80e0994b0ef711f6fd8b415f7acbd94ac420d909 /nixos/modules/services/system
parent1a6af9f88ec2405334a9fd6a977ccbcb53472305 (diff)
downloadnixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar.gz
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar.bz2
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar.lz
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar.xz
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.tar.zst
nixpkgs-6d2857a311a6586860cb0c70778b035c92d9c88c.zip
[bot] treewide: remove unused 'inherit' in let blocks
Diffstat (limited to 'nixos/modules/services/system')
-rw-r--r--nixos/modules/services/system/kerberos.nix2
-rw-r--r--nixos/modules/services/system/nscd.nix2
2 files changed, 1 insertions, 3 deletions
diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix
index d85dee08982..d151385d2f9 100644
--- a/nixos/modules/services/system/kerberos.nix
+++ b/nixos/modules/services/system/kerberos.nix
@@ -2,7 +2,7 @@
 
 let
 
-  inherit (lib) mkOption mkIf singleton;
+  inherit (lib) mkOption mkIf;
 
   inherit (pkgs) heimdalFull;
 
diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix
index 11a30ea81ba..fd1570d1198 100644
--- a/nixos/modules/services/system/nscd.nix
+++ b/nixos/modules/services/system/nscd.nix
@@ -7,8 +7,6 @@ let
   nssModulesPath = config.system.nssModules.path;
   cfg = config.services.nscd;
 
-  inherit (lib) singleton;
-
 in
 
 {