Compare commits

..

2 Commits

Author SHA1 Message Date
921bbf01a1 Add more programs. 2024-04-16 16:10:27 +02:00
9299f2d31b Add thefuck. 2024-04-16 16:10:15 +02:00
2 changed files with 10 additions and 2 deletions

View File

@ -41,7 +41,8 @@
bukubrow # Nice bookmark manager browser support
rclone # Best sync client in the world
age # Simple file encryption
nitch # Simple system info
hyperfine # Program benchmarking
navi # Tldr and cheat.sh cli
neofetch # Neo
libarchive # bsdtar
imagemagick # image tools

View File

@ -1,4 +1,4 @@
{ inputs, config, pkgs, ... }: {
{ config, pkgs, ... }: {
# But we all know I love zsh
programs.zsh = {
enable = true;
@ -100,4 +100,11 @@
enableZshIntegration = true;
nix-direnv.enable = true;
};
programs.thefuck = {
enable = true;
enableZshIntegration = true;
};
home.packages = with pkgs; [ nitch ];
}