nightlight/shell.nix
2021-03-29 22:13:13 +02:00

7 lines
99 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
bc
wget
];
}