NixOS/home/programs/default.nix

45 lines
796 B
Nix
Raw Normal View History

2024-06-19 16:56:10 +07:00
{ ... }:
2024-06-12 09:54:11 +07:00
{
imports = [
2024-06-12 18:09:56 +07:00
./bitwarden.nix
./chromium.nix
2024-06-12 18:22:03 +07:00
./dbeaver.nix
2024-06-12 18:09:56 +07:00
./discord.nix
2024-07-02 14:37:57 +07:00
./easyeffects.nix
2024-06-12 09:54:11 +07:00
./git.nix
2024-06-12 18:09:56 +07:00
./github.nix
./go.nix
./jellyfin.nix
2024-06-12 18:22:03 +07:00
./microsoft-edge.nix
2024-06-12 09:54:11 +07:00
./mpv.nix
2024-06-12 18:09:56 +07:00
./neovide.nix
./neovim.nix
2024-06-12 18:22:03 +07:00
./nextcloud.nix
2024-06-12 18:09:56 +07:00
./nnn.nix
2024-06-12 09:54:11 +07:00
./node.nix
2024-06-12 18:09:56 +07:00
./slack.nix
./spotify.nix
# ./starship.nix
2024-06-12 09:54:11 +07:00
./tofi.nix
2024-06-12 18:09:56 +07:00
./variety.nix
2024-06-12 09:54:11 +07:00
./vscode.nix
./whatsapp.nix
2024-06-19 16:56:10 +07:00
./zathura.nix
2024-07-02 14:37:57 +07:00
./zsh.nix
2024-06-12 09:54:11 +07:00
];
programs.fzf = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
defaultCommand = "fd --type f";
};
programs.zoxide = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
programs.ripgrep.enable = true;
programs.htop.enable = true;
}