mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add devel
This commit is contained in:
parent
be01d99fd4
commit
2a909a2908
3 changed files with 7 additions and 2 deletions
|
@ -48,8 +48,6 @@
|
|||
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||
# echo "Hello, ${config.home.username}!"
|
||||
# '')
|
||||
rustc
|
||||
cargo
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
./bat
|
||||
./browsers
|
||||
./communication
|
||||
./devel
|
||||
./fonts
|
||||
./gnome-utils
|
||||
./kde-utils
|
||||
|
|
6
modules/home-manager/devel/default.nix
Normal file
6
modules/home-manager/devel/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
cargo
|
||||
rustc
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue