summaryrefslogtreecommitdiff
path: root/lib/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-25 15:10:45 -0400
committerseth <[email protected]>2023-05-25 15:10:45 -0400
commit9c2239488fb0c879ea98b6ec9eeda73603366bde (patch)
tree6daba7d3d708a968220f16888cf87d12beb4860d /lib/default.nix
parent73da18a0ded305734e6e679d7adb36b19a74d9bc (diff)
move lib to nix-exprs
Diffstat (limited to 'lib/default.nix')
-rw-r--r--lib/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/default.nix b/lib/default.nix
deleted file mode 100644
index 67a102e..0000000
--- a/lib/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- lib,
- inputs,
-}: let
- configs = import ./configs.nix inputs;
-in
- lib.extend (_: _: {
- my = {
- inherit (configs) mkHMUser mkNixOS;
-
- ci = import ./ci.nix lib;
-
- mkFlakeFns = systems: nixpkgs: rec {
- forAllSystems = lib.genAttrs systems;
- nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;});
- };
- };
- })