summaryrefslogtreecommitdiff
path: root/templates/full/nix/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/full/nix/shell.nix')
-rw-r--r--templates/full/nix/shell.nix20
1 files changed, 8 insertions, 12 deletions
diff --git a/templates/full/nix/shell.nix b/templates/full/nix/shell.nix
index 66cd1a4..680c875 100644
--- a/templates/full/nix/shell.nix
+++ b/templates/full/nix/shell.nix
@@ -1,17 +1,13 @@
{
- perSystem = {
- pkgs,
- self',
- ...
- }: {
- devShells = {
- default = pkgs.mkShell {
- packages = [
- self'.formatter
- ];
+ perSystem =
+ { pkgs, self', ... }:
+ {
+ devShells = {
+ default = pkgs.mkShell {
+ packages = [ self'.formatter ];
- inputsFrom = [self'.packages.hello];
+ inputsFrom = [ self'.packages.hello ];
+ };
};
};
- };
}