configuration.nix/home/programs/default.nix
2024-03-23 15:53:30 +05:30

52 lines
758 B
Nix

{ pkgs, ... }: {
imports = [
./aria2.nix
./bat.nix
./btop.nix
./direnv.nix
./eza.nix
./files.nix
./firefox.nix
./git.nix
./gnupg.nix
./kitty.nix
./mpv.nix
./neovim.nix
./ssh.nix
./starship.nix
./tmux.nix
./virt-manager.nix
./yt-dlp.nix
./zsh.nix
];
home.packages = with pkgs; [
_1password-gui
doctl
evince
flyctl
gh
git-crypt
gnome-secrets
loupe
lutris
nixpkgs-review
nix-init
nurl
pavucontrol
ripgrep
spotify
steam
steam.run
wl-clipboard
xdg-utils
yubioath-flutter
];
programs = {
fzf.enable = true;
lazygit.enable = true;
nix-index.enable = true;
zoxide.enable = true;
};
}