Skip to content

Commit

Permalink
chore(shell): don't include deploy-rs on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Dec 9, 2024
1 parent b1c2667 commit 1976d73
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions parts/programs/shell.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
perSystem =
{
lib,
pkgs,
self',
config,
Expand All @@ -20,15 +21,18 @@
FLAKE = ".";
NH_FLAKE = ".";

packages = [
pkgs.git # flakes require git
pkgs.just # quick and easy task runner
pkgs.cocogitto # git helpers
self'.formatter # nix formatter
pkgs.nix-output-monitor # get clean diff between generations
inputs'.agenix.packages.agenix # secrets
inputs'.deploy-rs.packages.deploy-rs # remote deployment
];
packages =
[
pkgs.git # flakes require git
pkgs.just # quick and easy task runner
pkgs.cocogitto # git helpers
self'.formatter # nix formatter
pkgs.nix-output-monitor # get clean diff between generations
inputs'.agenix.packages.agenix # secrets
]
++ lib.lists.optionals pkgs.stdenv.hostPlatform.isLinux [
inputs'.deploy-rs.packages.deploy-rs # remote deployment
];

inputsFrom = [ config.treefmt.build.devShell ];
};
Expand Down

0 comments on commit 1976d73

Please sign in to comment.