with pkgs

This commit is contained in:
Benson Chu 2024-08-20 19:40:38 -05:00
parent 5532498aed
commit 937afa0be9
2 changed files with 12 additions and 26 deletions

View file

@ -32,7 +32,7 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
home.packages = with pkgs; [
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@ -49,18 +49,11 @@
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
pkgs.rizin
pkgs.radare2
pkgs.cutter
pkgs.ripgrep
pkgs.cmake
pkgs.libtool
pkgs.git
# pkgs.home-manager
pkgs.cmake
pkgs.gnumake
pkgs.libtool
pkgs.gcc
rizin radare2 cutter
ripgrep
git
cmake gnumake libtool gcc
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage

View file

@ -29,7 +29,7 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
home.packages = with pkgs; [
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@ -46,18 +46,11 @@
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
pkgs.rizin
pkgs.radare2
pkgs.cutter
pkgs.ripgrep
pkgs.cmake
pkgs.libtool
pkgs.git
# pkgs.home-manager
pkgs.cmake
pkgs.gnumake
pkgs.libtool
pkgs.gcc
rizin radare2 cutter
ripgrep
git
cmake gnumake libtool gcc
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage