10 lines
112 B
Nix
10 lines
112 B
Nix
|
with import <nixpkgs> {};
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
awscli
|
||
|
gnumake
|
||
|
letsencrypt
|
||
|
tarsnap
|
||
|
];
|
||
|
}
|