chore(nix): update dev flake

This commit is contained in:
Evelyn Alicke 2024-03-27 11:56:15 +01:00
parent 4018e55b89
commit 6df3d7bb4c
No known key found for this signature in database
GPG key ID: 6834780BDA479436
4 changed files with 171 additions and 5 deletions

40
flake.nix Normal file
View file

@ -0,0 +1,40 @@
{
description = "A devShell example";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
openssl
pkg-config
eza
fd
rust-bin.beta.latest.complete
clippy
rust-analyzer
perf-tools
linuxPackages_latest.perf
];
shellHook = ''
alias ls=eza
alias find=fd
'';
};
}
);
}