summaryrefslogtreecommitdiff
path: root/templates/basic/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/basic/default.nix')
-rw-r--r--templates/basic/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/basic/default.nix b/templates/basic/default.nix
new file mode 100644
index 0000000..16b3594
--- /dev/null
+++ b/templates/basic/default.nix
@@ -0,0 +1,13 @@
+{
+ pkgs ? import nixpkgs {
+ inherit system;
+ config = { };
+ overlays = [ ];
+ },
+ lib ? pkgs.lib,
+ nixpkgs ? <nixpkgs>,
+ system ? builtins.currentSystem,
+}:
+{
+ inherit (pkgs) lib;
+}