configuration.nix/home/programs/default.nix

52 lines
864 B
Nix
Raw Normal View History

2023-04-04 09:58:29 +05:30
{ pkgs, ... }: {
imports = [
2023-04-07 19:09:05 +05:30
./aria2.nix
./bat.nix
./btop.nix
./direnv.nix
./exa.nix
2023-04-04 09:58:29 +05:30
./firefox.nix
2023-04-07 19:09:05 +05:30
./git.nix
./github-cli.nix
./gnupg.nix
2023-04-04 09:58:29 +05:30
./kitty.nix
2023-04-07 19:09:05 +05:30
./mpv.nix
2023-04-04 09:58:29 +05:30
./nixvim.nix
2023-04-07 19:09:05 +05:30
./starship.nix
2023-04-04 09:58:29 +05:30
./tmux.nix
./virt-manager.nix
2023-04-07 19:09:05 +05:30
./yt-dlp.nix
./zsh.nix
2023-04-04 09:58:29 +05:30
];
home.packages = with pkgs; [
_1password-gui
2023-04-07 19:09:05 +05:30
celluloid
2023-04-04 09:58:29 +05:30
discord
evince
2023-04-07 19:09:05 +05:30
git-crypt
2023-04-04 09:58:29 +05:30
gnome.eog
gnome.gnome-system-monitor
gnome3.gnome-disk-utility
2023-04-07 19:09:05 +05:30
lazydocker
2023-04-04 09:58:29 +05:30
pantheon.elementary-files
pavucontrol
2023-04-07 19:09:05 +05:30
ripgrep
spotify-tui
2023-04-08 14:57:55 +05:30
wl-clipboard
2023-04-04 09:58:29 +05:30
xdg-utils
yubioath-flutter
yubikey-manager
yubikey-manager-qt
yubikey-personalization
yubikey-personalization-gui
];
programs = {
2023-04-07 19:09:05 +05:30
fzf.enable = true;
lazygit.enable = true;
ssh.enable = true;
zoxide.enable = true;
2023-04-04 09:58:29 +05:30
};
}