summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-11 21:14:17 -0500
committerseth <[email protected]>2023-03-11 21:14:17 -0500
commitd4552910a0fcbf271160a3f2ed84ebc650aed066 (patch)
treee0e9fe98e287e935d67d8c0e6620c5b3187f4d81 /flake.nix
parent2f5612b54033ac9eae2f8af6b51bcc7d9bf334e8 (diff)
epic one liner (technically) for utils
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 274bc95..e2bf988 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;};