dotfiles/shells/deploy/default.nix
2025-09-18 18:03:56 +02:00

20 lines
316 B
Nix

{
lib,
inputs,
pkgs,
...
}:
pkgs.mkShell {
packages = with pkgs; [
just
croc
inputs.disko.packages.${pkgs.system}.disko
helix
];
# Define an alias to use a Justfile specifically with
# deployment tooling enabled.
shellHook = ''
alias elements="just -f ${././Justfile}"
'';
}