nixos-installer/flake/dev-shells.nix
2025-03-11 21:25:10 +01:00

12 lines
179 B
Nix

{
perSystem =
{ pkgs, system, ... }:
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.sops
pkgs.age
];
};
};
}