This commit is contained in:
Miguel Palhas
2024-10-12 10:06:53 +01:00
parent e15c5afea1
commit cd733e5fb6
5 changed files with 56 additions and 19 deletions
+1
View File
@@ -6,6 +6,7 @@
./rust.nix
./git
./solidity.nix
./dev.nix
];
programs = {
+6
View File
@@ -0,0 +1,6 @@
{ lib, config, ... }:
{
programs = {
direnv.enable = true;
};
}
+11
View File
@@ -3,6 +3,17 @@
home.packages = with pkgs; [
rustup
bacon
openssl
openssl_3
pkg-config
glib
glib.dev
gtk3
libsoup
webkitgtk
dbus
librsvg
];
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
}