punkfairie
b8b4759f17
"It's overkill to give every single package it's own nix module" yeah probably. I do it so that I never have to guess where something's configuration lives again. Just open up marleyos/ in lazyvim, hit <space><space>, search for program, profit. The only exception is stuff specific to programming languages, such as language servers and aliases to php artisan. Those live under languages/<language>. Eventually I'd like to make dev shells for each.
29 lines
420 B
Nix
29 lines
420 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./amfora.nix
|
|
./bat.nix
|
|
./btop.nix
|
|
./cava.nix
|
|
./curl.nix
|
|
./eza.nix
|
|
./fish.nix
|
|
./fzf.nix
|
|
./gh.nix
|
|
./hyfetch.nix
|
|
./just.nix
|
|
./lazygit.nix
|
|
./less.nix
|
|
./man.nix
|
|
./ncmpcpp.nix
|
|
./neofetch.nix
|
|
./ripgrep.nix
|
|
./starship.nix
|
|
./tmux.nix
|
|
./topgrade.nix
|
|
./wget.nix
|
|
./wezterm.nix
|
|
./zathura.nix
|
|
./zoxide.nix
|
|
];
|
|
}
|