summaryrefslogtreecommitdiff
path: root/dev/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-02 16:14:08 -0500
committerseth <[email protected]>2024-02-02 19:22:07 -0500
commitac3021bc818c6525db108639645780393c3d762f (patch)
tree0e3feccb2579824ae3bff767a4fe860248632ef2 /dev/shell.nix
parent1e32ab22f3fc2a4959f90ded95d7318bd4e23623 (diff)
terranix: use new flakeModule
Diffstat (limited to 'dev/shell.nix')
-rw-r--r--dev/shell.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/shell.nix b/dev/shell.nix
index 4ed5501..3b9afcc 100644
--- a/dev/shell.nix
+++ b/dev/shell.nix
@@ -3,7 +3,7 @@
pkgs,
config,
inputs',
- opentofu',
+ self',
...
}: {
devShells = {
@@ -14,7 +14,7 @@
actionlint
# nix
- config.formatter
+ self'.formatter
deadnix
nil
statix
@@ -23,7 +23,7 @@
deploy-rs
fzf
just
- opentofu' # see ../terranix/
+ config.terranix.package
]
++ lib.optional stdenv.isLinux inputs'.agenix.packages.agenix;
};