summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2021-12-11 18:06:38 +0100
committerQuentin Aristote <quentin@aristote.fr>2021-12-11 18:06:38 +0100
commitc2bbd32ad4f00316e19b3b3c045c159215e21942 (patch)
treef97efa87d9a3795f9ca738d8e8abff6801287535
parent0537f488717d8d190bbaa80a097dcb188c0d84ba (diff)
template : show that settings may use arguments like any nix module
-rw-r--r--shell-template.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-template.nix b/shell-template.nix
index b7b82fe..b9eaeda 100644
--- a/shell-template.nix
+++ b/shell-template.nix
@@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> { } }:
-let settings = { };
+let settings = { ... }: { };
in import ~/.config/venv-manager { inherit pkgs settings; }