about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/multi/pkgs/.skip-subtree0
-rw-r--r--users/multi/pkgs/default.nix15
2 files changed, 11 insertions, 4 deletions
diff --git a/users/multi/pkgs/.skip-subtree b/users/multi/pkgs/.skip-subtree
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/users/multi/pkgs/.skip-subtree
diff --git a/users/multi/pkgs/default.nix b/users/multi/pkgs/default.nix
index e98ed735c4..ee30a10691 100644
--- a/users/multi/pkgs/default.nix
+++ b/users/multi/pkgs/default.nix
@@ -1,6 +1,13 @@
-{ pkgs, ... }:
+{ depot, pkgs, ... }:
 
-let
-  htop = import ./htop { inherit pkgs; };
+let 
+  nixpkgs = import pkgs.nixpkgsSrc {};
+  localpkg = path: import path { pkgs = nixpkgs; };
+
+  packages = {
+    htop = localpkg ./htop;
+  };
 in
-  [ htop ]
+  packages // {
+    meta.targets = builtins.attrNames packages;
+  }