Nixos-Configuration/modules/flake/devshell.nix
Jermeiah S 2802db394f
All checks were successful
/ check (push) Successful in 1m3s
/ deploy (push) Has been skipped
feature: added ip-gather command for improved workflow
2025-06-22 17:15:45 -04:00

24 lines
457 B
Nix

{
perSystem =
{
self',
pkgs,
system,
...
}:
{
devShells.default = pkgs.mkShell {
name = "nixos-unified-template-shell";
meta.description = "Shell environment for modifying this Nix configuration";
packages = with pkgs; [
self'.packages.ip-gather
openssh
deploy-rs
ssh-to-age
sops
just
nixd
];
};
};
}