initial commit

This commit is contained in:
Zastian Pretorius
2024-05-08 13:55:26 +01:00
commit c31b86fa01
12 changed files with 2118 additions and 0 deletions

25
shell.nix Normal file
View File

@@ -0,0 +1,25 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
dbus
openssl
cargo
rustc
rust-analyzer
rustup
gcc
rustfmt
gf
];
nativeBuildInputs = with pkgs; [
pkg-config
];
dbus = pkgs.dbus;
shellHook = ''
export TEMPDIR=/tmp
echo "run shell shit here"
echo "your mom"
'';
}