mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-02-18 22:05:28 -05:00
Merge pull request #668 from Yappaholic/main
docs: add guix installation instructions
This commit is contained in:
commit
15729db193
1 changed files with 28 additions and 0 deletions
28
README.md
28
README.md
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue