Merge pull request #668 from Yappaholic/main

docs: add guix installation instructions
This commit is contained in:
DreamMaoMao 2026-02-16 13:16:56 +08:00 committed by GitHub
commit 15729db193
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,6 +99,34 @@ Then, install the package:
dnf install mangowc
```
## GuixSD
The package definition is described in the source repository.
First, add `mangowc` channel to `channels.scm` file:
```scheme
;; In $HOME/.config/guix/channels.scm
(cons (channel
(name 'mangowc)
(url "https://github.com/DreamMaoMao/mangowc.git"))
... ;; Your other channels
%default-channels)
```
Then, run `guix pull` and after update you can either run
`guix install mangowc` or add it to your configuration via:
```scheme
(use-modules (mangowc)) ;; Add mangowc module
;; Add mangowc to packages list
(packages (cons
mangowc
... ;; Other packages you specified
%base-packages))
```
And then rebuild your system.
## Other
```bash