refactor(packages): add packages.nix
This commit is contained in:
parent
401c9e4660
commit
8211af71e3
|
@ -6,48 +6,7 @@ in {
|
|||
"postman"
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
bottom
|
||||
ctop
|
||||
delta
|
||||
doppler
|
||||
exa
|
||||
file
|
||||
fzf
|
||||
gcc
|
||||
gh
|
||||
git
|
||||
git-crypt
|
||||
inotify-tools
|
||||
just
|
||||
tree-sitter
|
||||
htop
|
||||
jq
|
||||
lua
|
||||
mysql
|
||||
neofetch
|
||||
nodejs
|
||||
nodePackages."http-server"
|
||||
php81
|
||||
php81Packages.composer
|
||||
platformsh
|
||||
postman
|
||||
pulumi-bin
|
||||
pv
|
||||
python3Full
|
||||
ripgrep
|
||||
terraform
|
||||
tldr
|
||||
tmuxinator
|
||||
tree
|
||||
unzip
|
||||
virtualenv
|
||||
wget
|
||||
xcp
|
||||
yarn
|
||||
zoxide
|
||||
|
||||
];
|
||||
home.packages = (import ./packages.nix) { inherit pkgs; };
|
||||
|
||||
programs.bat.enable = true;
|
||||
|
||||
|
|
43
home-manager/modules/packages.nix
Normal file
43
home-manager/modules/packages.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
with pkgs; [
|
||||
bottom
|
||||
ctop
|
||||
delta
|
||||
doppler
|
||||
exa
|
||||
file
|
||||
fzf
|
||||
gcc
|
||||
gh
|
||||
git
|
||||
git-crypt
|
||||
inotify-tools
|
||||
just
|
||||
tree-sitter
|
||||
htop
|
||||
jq
|
||||
lua
|
||||
mysql
|
||||
neofetch
|
||||
nodejs
|
||||
nodePackages."http-server"
|
||||
php81
|
||||
php81Packages.composer
|
||||
platformsh
|
||||
postman
|
||||
pulumi-bin
|
||||
pv
|
||||
python3Full
|
||||
ripgrep
|
||||
terraform
|
||||
tldr
|
||||
tmuxinator
|
||||
tree
|
||||
unzip
|
||||
virtualenv
|
||||
wget
|
||||
xcp
|
||||
yarn
|
||||
zoxide
|
||||
]
|
Loading…
Reference in a new issue