summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
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;};