1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-11-19 16:26:03 +00:00

Updated Installation (markdown)

mxx kee
2024-05-14 00:21:01 +02:00
parent a20bfadde6
commit b1361732e8

@@ -69,4 +69,20 @@ sudo pip install thefuck
# Void Linux # Void Linux
```bash ```bash
sudo xbps-install thefuck sudo xbps-install thefuck
```
#nixOS
- my config is made with intended file
*configuration.nix*
- this config is without flakes
```nix
environment.systemPackages [
# ...
# tba
thefuck # app which corrects your previous console command
];
programs.thefuck = {
enable = true;
alias = "fuck";
};
``` ```