Skip to content

Commit

Permalink
README: Add NixOS installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
cryskram authored Sep 17, 2024
1 parent 686bff3 commit 5b19185
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Many more actions and gestures are available and everything is easily configurab
* [openSUSE](#opensuse)
* [Alpine Linux](#alpine-linux)
* [Void Linux](#void-linux)
* [NixOS](#nixos)
* [GNOME](#gnome)
* [Configuration](#configuration)
* [Using Touché](#using-touché)
Expand Down Expand Up @@ -185,6 +186,21 @@ $ sudo xbps-install touchegg
$ sudo ln -s /etc/sv/touchegg /var/service
```

## NixOS

Add the `touchegg` package in your `configuration.nix` file and enable the services.

```
# configuration.nix
...
environment.systemPackages = with pkgs; [
touchegg
];
services.touchegg.enable = true;
...
```

## GNOME

If you are using the GNOME Desktop Environment it is recommended to also install this extension:
Expand Down

0 comments on commit 5b19185

Please sign in to comment.