2023-05-18 16:11:26 +05:30
|
|
|
{pkgs, ...}: {
|
2023-04-04 09:58:29 +05:30
|
|
|
imports = [
|
2023-04-07 19:09:05 +05:30
|
|
|
./aria2.nix
|
2023-05-27 19:55:24 +05:30
|
|
|
./bat.nix
|
|
|
|
./btop.nix
|
|
|
|
./direnv.nix
|
|
|
|
./git.nix
|
2023-04-08 18:32:45 +05:30
|
|
|
./files.nix
|
2023-04-04 09:58:29 +05:30
|
|
|
./firefox.nix
|
2023-04-07 19:09:05 +05:30
|
|
|
./github-cli.nix
|
|
|
|
./gnupg.nix
|
2023-04-04 09:58:29 +05:30
|
|
|
./kitty.nix
|
2023-09-09 21:10:52 +05:30
|
|
|
./lsd.nix
|
2023-04-07 19:09:05 +05:30
|
|
|
./mpv.nix
|
2023-08-05 17:42:16 +05:30
|
|
|
./neovim.nix
|
2023-05-27 19:55:24 +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
|
2023-05-27 19:55:24 +05:30
|
|
|
./zsh.nix
|
2023-04-04 09:58:29 +05:30
|
|
|
];
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
_1password-gui
|
2023-09-06 10:02:55 +05:30
|
|
|
bitwarden
|
2023-04-04 09:58:29 +05:30
|
|
|
evince
|
2023-08-05 14:00:40 +05:30
|
|
|
git-crypt
|
2023-04-04 09:58:29 +05:30
|
|
|
gnome.eog
|
|
|
|
gnome.gnome-system-monitor
|
|
|
|
gnome3.gnome-disk-utility
|
2023-05-27 19:55:24 +05:30
|
|
|
lazydocker
|
2023-07-08 16:12:09 +05:30
|
|
|
obsidian
|
2023-04-04 09:58:29 +05:30
|
|
|
pavucontrol
|
2023-05-27 19:55:24 +05:30
|
|
|
ripgrep
|
2023-04-07 19:09:05 +05:30
|
|
|
spotify-tui
|
2023-08-27 14:51:56 +05:30
|
|
|
steam-run
|
2023-04-08 14:57:55 +05:30
|
|
|
wl-clipboard
|
2023-08-27 14:27:26 +05:30
|
|
|
ungoogled-chromium
|
2023-04-04 09:58:29 +05:30
|
|
|
xdg-utils
|
2023-05-27 19:55:24 +05:30
|
|
|
yubioath-flutter
|
2023-04-04 09:58:29 +05:30
|
|
|
yubikey-manager
|
|
|
|
yubikey-manager-qt
|
|
|
|
yubikey-personalization
|
|
|
|
yubikey-personalization-gui
|
|
|
|
];
|
2023-05-27 19:55:24 +05:30
|
|
|
|
|
|
|
programs = {
|
|
|
|
fzf.enable = true;
|
|
|
|
lazygit.enable = true;
|
2023-06-03 12:25:11 +05:30
|
|
|
nix-index.enable = true;
|
2023-05-27 19:55:24 +05:30
|
|
|
ssh.enable = true;
|
|
|
|
zoxide.enable = true;
|
|
|
|
};
|
2023-04-04 09:58:29 +05:30
|
|
|
}
|