refactor(packages): add packages.nix

This commit is contained in:
Oliver Davies 2023-03-22 22:56:56 +00:00
parent 401c9e4660
commit 8211af71e3
2 changed files with 44 additions and 42 deletions

View file

@ -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;

View 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
]