marleyos/home/programs/default.nix
punkfairie b8b4759f17
refactor(just): Give Just it's own programs/ module
"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.
2024-11-05 18:10:51 -08:00

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
];
}