1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-07 13:41:21 +00:00

Updated Installation (markdown)

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

@ -70,3 +70,19 @@ sudo pip install thefuck
```bash
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";
};
```