update fidget nvim, improve rust pkgs, updates for nextcloud apps

This commit is contained in:
Noah Masur
2023-11-16 21:19:45 -05:00
parent d1c0472b77
commit 7b7f426624
4 changed files with 58 additions and 27 deletions

View File

@ -13,8 +13,17 @@
devShells = forAllSystems (system:
let pkgs = import nixpkgs { inherit system; };
in {
default =
pkgs.mkShell { buildInputs = with pkgs; [ gcc rustc cargo ]; };
default = pkgs.mkShell {
buildInputs = with pkgs; [
gcc
rustc
cargo
cargo-watch
rustfmt
pkg-config
openssl
];
};
});
};
}