summaryrefslogtreecommitdiff
path: root/lib/lib.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-09-07 11:51:57 -0400
committerseth <[email protected]>2024-09-07 12:00:19 -0400
commitdee6c5d9cbc12ff3012a27a5e69dfe331089310b (patch)
tree290b5862448b781776f6606534829d4a35c2ac7f /lib/lib.nix
parent8539ad118cd34e8f51e736e1c6bec7a19f0e15f1 (diff)
tree-wide: use flake module for configurations
Diffstat (limited to 'lib/lib.nix')
-rw-r--r--lib/lib.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/lib.nix b/lib/lib.nix
deleted file mode 100644
index 54d6712..0000000
--- a/lib/lib.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- lib,
- inputs,
- self,
-}:
-let
- builders = import ./builders.nix { inherit lib inputs self; };
-in
-{
- inherit builders;
-
- inherit (builders)
- nixosSystem
- nixosSystemStable
- darwinSystem
- homeManagerConfiguration
- ;
-
- nginx = import ./nginx.nix lib;
-}