Nixos-Configuration/modules/flake/devshell.nix
Jermeiah S 05bca5b139
All checks were successful
/ check (push) Successful in 1m46s
/ deploy (push) Has been skipped
improved just file
added just ssh for ygg services
2025-06-23 13:42:49 -04:00

24 lines
452 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; [
jq
self'.packages.ip-gather
deploy-rs
ssh-to-age
sops
just
nixd
];
};
};
}