nix-config/users/tacocat/programs/default.nix

33 lines
398 B
Nix
Raw Normal View History

2023-10-21 00:49:53 +00:00
{
imports = [
./git.nix
./taskwarrior.nix
2023-11-05 05:59:16 +00:00
./firefox.nix
2023-12-30 01:19:12 +00:00
./fzf.nix
2023-12-30 02:30:08 +00:00
./tmux.nix
2024-01-11 00:29:26 +00:00
./tiny.nix
2024-02-24 21:22:39 +00:00
./zoxide.nix
2024-03-22 03:52:03 +00:00
./ncmpcpp.nix
2023-10-21 00:49:53 +00:00
];
2023-10-29 06:45:13 +00:00
programs.eza = {
enable = true;
git = true;
};
2023-10-29 06:45:13 +00:00
programs.bat = {
enable = true;
};
programs.rofi = {
enable = true;
};
2023-11-25 02:20:31 +00:00
programs.zathura = {
enable = true;
options = {
synctex = true;
};
};
2023-10-21 00:49:53 +00:00
}