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