summaryrefslogtreecommitdiff
path: root/dev/devShells.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-08-28 23:08:15 -0400
committerseth <[email protected]>2024-08-28 23:08:15 -0400
commitf77aeb0db935f60590aa5b6975857b528c8f6a51 (patch)
tree1890fe7b971708e5d458771d6d40e9755662fe18 /dev/devShells.nix
parent4d29d8555483d77b8b96c61385186065bcc22689 (diff)
treewide: use lix-module for lix
Diffstat (limited to 'dev/devShells.nix')
-rw-r--r--dev/devShells.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/devShells.nix b/dev/devShells.nix
index ca60d16..68057a1 100644
--- a/dev/devShells.nix
+++ b/dev/devShells.nix
@@ -14,7 +14,7 @@
[
# we want to make sure we have the same
# nix behavior across machines
- pkgs.lix
+ pkgs.nix
# format + lint
pkgs.actionlint
@@ -30,10 +30,10 @@
# terranix
self'.packages.opentofu
]
- # see above comment about {l,n}ix
+ # see above comment about nix
++ lib.optional pkgs.stdenv.isDarwin inputs'.nix-darwin.packages.darwin-rebuild
++ lib.optionals pkgs.stdenv.isLinux [
- (pkgs.nixos-rebuild.override { nix = pkgs.lix; }) # ditto
+ pkgs.nixos-rebuild # ditto
inputs'.agenix.packages.agenix
];
};