add shell for init

This commit is contained in:
sadan 2024-05-26 11:35:30 -04:00
parent 4af1ae9060
commit 95e8700dbc
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800
2 changed files with 13 additions and 0 deletions

View file

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs;[
sops
ssh-to-age
git
openssh
neovim
nano
wget
curl
];
}