rust overlay

This commit is contained in:
2023-06-03 21:52:04 -04:00
parent a4a768e10d
commit 4fd3aac5e5
3 changed files with 13 additions and 2 deletions

View File

@@ -6,6 +6,9 @@
home.username = "jfrikker";
home.homeDirectory = "/Users/jfrikker";
home.sessionVariables.TEST = "foo";
home.sessionVariables.RUST_SRC_PATH = "${pkgs.rust-bin.stable."1.68.0".rust-src}/lib/rustlib/src/rust/library";
home.packages = [
# pkgs.apacheKafka
pkgs.aws-iam-authenticator
@@ -30,9 +33,11 @@
pkgs.postgresql
pkgs.ripgrep
# pkgs.rlwrap
pkgs.rust-analyzer
# pkgs.rust-analyzer
pkgs.rust-script
pkgs.rustup
pkgs.rust-bin.stable."1.68.0".default
pkgs.rust-bin.stable."1.68.0".rust-analyzer
# pkgs.rustup
# pkgs.sbcl
# pkgs.source-code-pro
# pkgs.xonsh

5
nixpkgs/config.nix Normal file
View File

@@ -0,0 +1,5 @@
{
permittedInsecurePackages = [
"nodejs-16.20.0"
];
}

1
nixpkgs/overlays.nix Normal file
View File

@@ -0,0 +1 @@
[ (import <rust-overlay>) ]