mirror of
https://codeberg.org/puppe/secrets.git
synced 2025-12-20 08:52:18 +01:00
8 lines
114 B
Nix
8 lines
114 B
Nix
|
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
pkgs.mkShell {
|
||
|
|
buildInputs = with pkgs; [
|
||
|
|
openssh
|
||
|
|
racket-minimal
|
||
|
|
];
|
||
|
|
}
|