Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/pages/docs/configuration/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,20 @@ sudo dnf copr enable errornointernet/quickshell
sudo dnf install quickshell
```

## Guix
This repo works as a channel. Add the following to your channel list:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This repo -> The Quickshell repo, or something similar


```scheme
(channel
(name quickshell)
(url "https://git.outfoxxed.me/outfoxxed/quickshell")
(branch "master"))
```

Then, you can install the package via `guix install quickshell-git` or by adding `quickshell-git` to your system or home definition.

You can also clone the repository and use `guix shell -f quickshell.scm` to try out the package.

### Manual build
See [BUILD.md](https://git.outfoxxed.me/quickshell/quickshell/src/branch/master/BUILD.md)
for build instructions and configurations.
Expand Down