Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
22 lines
219 B
Nix
22 lines
219 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./git
|
|
|
|
./btop.nix
|
|
./starship.nix
|
|
./vim.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
ncdu
|
|
eza
|
|
ripgrep
|
|
fd
|
|
httpie
|
|
diffsitter
|
|
jq
|
|
];
|
|
}
|