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