Add thefuck.

This commit is contained in:
CronyAkatsuki 2024-04-16 16:10:15 +02:00
parent 3a73922657
commit 9299f2d31b

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 ];
}