summaryrefslogtreecommitdiff
path: root/templates/standard/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-16 21:18:46 -0400
committerseth <[email protected]>2024-10-16 23:23:33 -0400
commit19b64bed1e31489de83f0c7d1b0ec1e77e3f7c49 (patch)
treeab2d101836db1d44f09996a9bea7469dfe2ec80d /templates/standard/default.nix
parent43d30b3ea28ab03a2e6da5101dc2b84918f18c51 (diff)
templates: cleanup
Diffstat (limited to 'templates/standard/default.nix')
-rw-r--r--templates/standard/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/standard/default.nix b/templates/standard/default.nix
new file mode 100644
index 0000000..b782208
--- /dev/null
+++ b/templates/standard/default.nix
@@ -0,0 +1,12 @@
+{
+ pkgs ? import nixpkgs {
+ inherit system;
+ config = { };
+ overlays = [ ];
+ },
+ nixpkgs ? <nixpkgs>,
+ system ? builtins.currentSystem,
+}:
+{
+ inherit (pkgs) hello;
+}