Nixos-Configuration/modules/flake/devshell.nix

23 lines
439 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
deploy-rs
ssh-to-age
sops
just
nixd
];
};
};
}