Skip to content

Commit

Permalink
Merge pull request #1003 from adgai19/main
Browse files Browse the repository at this point in the history
Added instructions for nixpkgs install
  • Loading branch information
tobi-wan-kenobi authored Nov 29, 2023
2 parents bfafd93 + a5b1f4a commit dc6eea3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ There is also a SlackBuild available here: [slackbuilds:bumblebee-status](http:/

An ebuild, for Gentoo Linux, is available on [gallifrey overlay](https://github.com/fedeliallalinea/gallifrey/tree/master/x11-misc/bumblebee-status). Instructions for adding the overlay can be found [here](https://github.com/fedeliallalinea/gallifrey/blob/master/README.md).

bumblebee-status is also avaliable in nixpkgs unstable channel- many thanks to [@augustebaum][https://github.com/augustebaum]!

For installing from nixpkgs, add the following snippet into your `configuration.nix`:

```nix
{
environment.systemPackages = with pkgs; [
(bumblebee-status.override{plugins = p:[p.cpu];})
];
}
```
replace `[p.cpu]` with the list of plugins that you want to use.

# Dependencies
[Available modules](https://bumblebee-status.readthedocs.io/en/main/modules.html) lists the dependencies (Python modules and external executables)
for each module. If you are not using a module, you don't need the dependencies.
Expand Down

0 comments on commit dc6eea3

Please sign in to comment.