9 lines
140 B
Nix
9 lines
140 B
Nix
with import <nixpkgs> { config.allowUnfree = true; };
|
|
mkShell {
|
|
buildInputs = [
|
|
awscli
|
|
gnumake
|
|
letsencrypt
|
|
tarsnap
|
|
];
|
|
}
|