summaryrefslogtreecommitdiff
path: root/dev/devShells.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-09 05:31:33 -0400
committerseth <[email protected]>2024-07-09 15:38:51 -0400
commitdcf455b299342c52d17bf73e1046898094a99adf (patch)
tree98edb1a485299be24a25827bedcf02fdae451a68 /dev/devShells.nix
parent01be52c037e8a457ac51bd37b755295baa7c83c6 (diff)
dev: document hydraJobs and devShells
Diffstat (limited to 'dev/devShells.nix')
-rw-r--r--dev/devShells.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/dev/devShells.nix b/dev/devShells.nix
index 9bed89b..2337f32 100644
--- a/dev/devShells.nix
+++ b/dev/devShells.nix
@@ -12,6 +12,8 @@
default = pkgs.mkShellNoCC {
packages =
[
+ # we want to make sure we have the same
+ # nix behavior across machines
pkgs.lix
# format + lint
@@ -25,11 +27,14 @@
pkgs.deploy-rs
pkgs.fzf
pkgs.just
+
+ # terranix
self'.packages.opentofu
]
- ++ lib.optional pkgs.stdenv.isDarwin [ inputs'.nix-darwin.packages.darwin-rebuild ]
+ # see above comment about {l,n}ix
+ ++ lib.optional pkgs.stdenv.isDarwin inputs'.nix-darwin.packages.darwin-rebuild
++ lib.optionals pkgs.stdenv.isLinux [
- pkgs.nixos-rebuild
+ pkgs.nixos-rebuild # ditto
inputs'.agenix.packages.agenix
];
};