diff options
| author | seth <[email protected]> | 2023-03-11 21:14:17 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-03-11 21:14:17 -0500 |
| commit | d4552910a0fcbf271160a3f2ed84ebc650aed066 (patch) | |
| tree | e0e9fe98e287e935d67d8c0e6620c5b3187f4d81 /flake.nix | |
| parent | 2f5612b54033ac9eae2f8af6b51bcc7d9bf334e8 (diff) | |
epic one liner (technically) for utils
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -54,11 +54,14 @@ pre-commit-hooks, ... }: let - util = import ./util { - inherit (nixpkgs) lib; - inherit inputs; - }; - inherit (util) mapHosts mapHMUsers; + inherit + (import ./util { + inherit (nixpkgs) lib; + inherit inputs; + }) + mapHosts + mapHMUsers + ; users = import ./users {inherit inputs;}; hosts = import ./hosts {inherit inputs;}; |
