summaryrefslogtreecommitdiff
path: root/flake
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-09 09:16:06 -0400
committerSeth Flynn <[email protected]>2025-03-09 09:16:06 -0400
commit433b44b2af1e1af840b1742c83a6b4f49f7a4836 (patch)
treed31494e7468d0ab2b275ccee9d4b600563e96924 /flake
parentc7b7c09e1f53f6b49399d0ca3886c85cf77254a8 (diff)
dev-shells: always use nixos-rebuild
Diffstat (limited to 'flake')
-rw-r--r--flake/dev-shells.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/flake/dev-shells.nix b/flake/dev-shells.nix
index 0df2fa3..fd23e36 100644
--- a/flake/dev-shells.nix
+++ b/flake/dev-shells.nix
@@ -9,7 +9,7 @@
}:
let
- inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
+ inherit (pkgs.stdenv.hostPlatform) isDarwin;
nix = inputs'.lix-module.packages.default;
@@ -36,15 +36,14 @@
pkgs.just
pkgs.opentofu
- ]
- ++ lib.optionals isDarwin [
- inputs'.nix-darwin.packages.darwin-rebuild
- ]
- ++ lib.optionals isLinux [
+
# See above comment about Nix
nixos-rebuild
-
inputs'.agenix.packages.agenix
+ ]
+ ++ lib.optionals isDarwin [
+ # Ditto
+ inputs'.nix-darwin.packages.darwin-rebuild
];
};
};