Increase modularity of configuration

This commit is contained in:
Bart van der Braak 2024-10-17 23:50:25 +02:00
parent ab876da423
commit bb897d5682
4 changed files with 94 additions and 67 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, inputs, config, ... }:
{
environment.systemPackages = with pkgs; with inputs; [
inputs.zen-browser.packages."${system}".default
firefox
git
vim
wget
curl
fzf
jq
ripgrep
];
}