diff options
| author | Seth Flynn <[email protected]> | 2025-03-09 09:16:06 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-09 09:16:06 -0400 |
| commit | 433b44b2af1e1af840b1742c83a6b4f49f7a4836 (patch) | |
| tree | d31494e7468d0ab2b275ccee9d4b600563e96924 | |
| parent | c7b7c09e1f53f6b49399d0ca3886c85cf77254a8 (diff) | |
dev-shells: always use nixos-rebuild
| -rw-r--r-- | flake/dev-shells.nix | 13 |
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 ]; }; }; |
