mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
22 lines
431 B
Nix
22 lines
431 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
visidata # CSV inspector
|
|
dos2unix # Convert Windows text files
|
|
inetutils # Includes telnet
|
|
youtube-dl # Convert web videos
|
|
pandoc # Convert text documents
|
|
mpd # TUI slideshows
|
|
awscli2
|
|
awslogs
|
|
kubectl
|
|
k9s
|
|
noti # Create notifications programmatically
|
|
];
|
|
|
|
};
|
|
|
|
}
|