add devel

This commit is contained in:
Aditya 2024-04-12 11:46:56 +05:30
parent be01d99fd4
commit 2a909a2908
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 7 additions and 2 deletions

View file

@ -48,8 +48,6 @@
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
rustc
cargo
];
nixpkgs.config.permittedInsecurePackages = [

View file

@ -4,6 +4,7 @@
./bat
./browsers
./communication
./devel
./fonts
./gnome-utils
./kde-utils

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
cargo
rustc
];
}