diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2024-10-26 16:13:23 +1100 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2024-10-28 00:38:39 +1100 |
| commit | febc3b3f514d1e3d46182975430737d0232e6af0 (patch) | |
| tree | 40c65e8cf0ae6def61b9bd15cfd4aad025b89e72 /modules/users | |
| parent | 32f0cf2140af6a852f8c8b6c8f15e4855d461b87 (diff) | |
users: remove `with lib;`
Diffstat (limited to 'modules/users')
| -rw-r--r-- | modules/users/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/users/default.nix b/modules/users/default.nix index c6c66f3..a23251d 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -1,8 +1,9 @@ { config, lib, pkgs, ... }: -with lib; - let + inherit (lib) concatStringsSep concatMapStringsSep elem filter filterAttrs + mapAttrs' mapAttrsToList mkIf mkMerge mkOption mkOrder optionalString types; + cfg = config.users; group = import ./group.nix; |
