nixos-config/shells/default/default.nix

10 lines
92 B
Nix

{
pkgs,
mkShell,
...
}:
mkShell {
packages = with pkgs; [
pkgs.deploy-rs
];
}