sneeuwvlok/shells/default/default.nix
2026-03-25 06:45:43 +00:00

22 lines
355 B
Nix

{
inputs,
...
}: {
perSystem = {pkgs, system, ...}: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
bash
sops
just
yq
pwgen
alejandra
nil
nixd
openssl
inputs.clan-core.packages.${system}.clan-cli
nix-output-monitor
];
};
};
}