dotfiles/shell.nix

15 lines
219 B
Nix
Raw Permalink Normal View History

2024-05-26 11:35:30 -04:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs;[
bash
2024-05-26 11:35:30 -04:00
sops
ssh-to-age
git
openssh
neovim
nano
wget
curl
];
}