Nixos-Configuration/modules/flake/devshell.nix
2025-06-20 14:07:30 -04:00

18 lines
379 B
Nix

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