2022-04-29 12:53:49 +04:00
|
|
|
# Private overlay for desktop systems
|
|
|
|
|
|
|
|
## Adding an overlay
|
|
|
|
|
|
|
|
### Option 1
|
|
|
|
|
2022-04-29 12:55:06 +04:00
|
|
|
Use module [eselect/repository](https://packages.gentoo.org/packages/app-eselect/eselect-repository).
|
2022-04-29 12:53:49 +04:00
|
|
|
Add an overlay with the command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
eselect repository add desktop git 'https://git.popov.link/gentoo-overlays/desktop'
|
|
|
|
```
|
|
|
|
|
|
|
|
### Option 2
|
|
|
|
|
|
|
|
Create file `/etc/portage/repos.conf/desktop.conf` with the following contents:
|
|
|
|
|
|
|
|
```text
|
|
|
|
[desktop]
|
|
|
|
location = /var/db/repos/desktop
|
|
|
|
sync-type = git
|
|
|
|
sync-uri = https://git.popov.link/gentoo-overlays/desktop
|
|
|
|
```
|