mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 22:51:21 +00:00
15 lines
223 B
Nix
15 lines
223 B
Nix
{ pkgs, inputs, config, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; with inputs; [
|
|
inputs.zen-browser.packages."${system}".default
|
|
firefox
|
|
git
|
|
vim
|
|
wget
|
|
curl
|
|
fzf
|
|
jq
|
|
ripgrep
|
|
];
|
|
}
|