mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-03-30 11:11:14 -04:00
docs: fix guix installation instructions
- Rename GuixSD to Guix System (the distro was renamed in 2019)
This commit is contained in:
parent
d1fd128981
commit
ee8a7b5961
1 changed files with 5 additions and 4 deletions
|
|
@ -101,7 +101,7 @@ Then, install the package:
|
||||||
dnf install mangowc
|
dnf install mangowc
|
||||||
```
|
```
|
||||||
|
|
||||||
## GuixSD
|
## Guix System
|
||||||
The package definition is described in the source repository.
|
The package definition is described in the source repository.
|
||||||
First, add `mangowc` channel to `channels.scm` file:
|
First, add `mangowc` channel to `channels.scm` file:
|
||||||
|
|
||||||
|
|
@ -109,7 +109,8 @@ First, add `mangowc` channel to `channels.scm` file:
|
||||||
;; In $HOME/.config/guix/channels.scm
|
;; In $HOME/.config/guix/channels.scm
|
||||||
(cons (channel
|
(cons (channel
|
||||||
(name 'mangowc)
|
(name 'mangowc)
|
||||||
(url "https://github.com/DreamMaoMao/mangowc.git"))
|
(url "https://github.com/DreamMaoMao/mangowc.git")
|
||||||
|
(branch "main"))
|
||||||
... ;; Your other channels
|
... ;; Your other channels
|
||||||
%default-channels)
|
%default-channels)
|
||||||
```
|
```
|
||||||
|
|
@ -121,8 +122,8 @@ Then, run `guix pull` and after update you can either run
|
||||||
(use-modules (mangowc)) ;; Add mangowc module
|
(use-modules (mangowc)) ;; Add mangowc module
|
||||||
|
|
||||||
;; Add mangowc to packages list
|
;; Add mangowc to packages list
|
||||||
(packages (cons
|
(packages (cons*
|
||||||
mangowc
|
mangowc-git
|
||||||
... ;; Other packages you specified
|
... ;; Other packages you specified
|
||||||
%base-packages))
|
%base-packages))
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue