mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 14:54:38 -05:00
15 lines
219 B
Nix
15 lines
219 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs;[
|
|
bash
|
|
sops
|
|
ssh-to-age
|
|
git
|
|
openssh
|
|
neovim
|
|
nano
|
|
wget
|
|
curl
|
|
];
|
|
}
|