configuration.nix/home/programs/default.nix

56 lines
851 B
Nix

{ pkgs, ... }: {
imports = [
./firefox
./aria2.nix
./bat.nix
./btop.nix
./direnv.nix
./eza.nix
./files.nix
./git.nix
./gnupg.nix
./helix.nix
./kitty.nix
./mpv.nix
./neovim.nix
./ssh.nix
./starship.nix
./tmux.nix
./virt-manager.nix
./yt-dlp.nix
./zathura.nix
./zsh.nix
];
home.packages = with pkgs; [
_1password-gui
android-file-transfer
blueberry
discord
doctl
flyctl
gh
git-crypt
#localsend
nixpkgs-review
nix-init
nurl
ripgrep
signal-desktop-beta
spotify
swayimg
telegram-desktop
transmission-remote-gtk
wl-clipboard
xdg-utils
yubioath-flutter
];
programs = {
fzf.enable = true;
lazygit.enable = true;
nix-index.enable = true;
zoxide.enable = true;
};
}