43 lines
		
	
	
		
			431 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			431 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  pkgs,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  imports = [
 | 
						|
    ../atuin.nix
 | 
						|
    ../shell.nix
 | 
						|
    ../git.nix
 | 
						|
    ../starship.nix
 | 
						|
    ../eza.nix
 | 
						|
    ../neovim.nix
 | 
						|
    ../bat.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  home.packages = with pkgs; [
 | 
						|
    # archives
 | 
						|
    zip
 | 
						|
    xz
 | 
						|
    unzip
 | 
						|
    p7zip
 | 
						|
 | 
						|
    # utils
 | 
						|
    yazi
 | 
						|
    tmux
 | 
						|
    bottom
 | 
						|
    ripgrep
 | 
						|
    jq
 | 
						|
    yq-go
 | 
						|
    fzf
 | 
						|
    aria2
 | 
						|
    gnupg
 | 
						|
    inetutils
 | 
						|
 | 
						|
    # misc
 | 
						|
    file
 | 
						|
    which
 | 
						|
    tree
 | 
						|
    gnutar
 | 
						|
    babelfish
 | 
						|
  ];
 | 
						|
}
 |