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

35 lines
442 B
Nix
Raw Normal View History

2023-10-21 00:49:53 +00:00
{
imports = [
./kitty.nix
./git.nix
./taskwarrior.nix
2023-11-05 05:59:16 +00:00
./firefox.nix
./vscode.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-05 01:16:52 +00:00
./radioboat.nix
2023-10-21 00:49:53 +00:00
];
2023-10-29 06:45:13 +00:00
programs.eza = {
enable = true;
enableAliases = 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
}