Nixos-Configuration/modules/flake/devshell.nix
2025-06-14 13:55:51 -04:00

15 lines
320 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; [
sops
just
nixd
];
};
};
}