blob: b99cbd0a1f9e668e3146d840e8983cfd5d8f8c42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Private overlay for desktop systems
## Adding an overlay
### Option 1
Use module (eselect/repository)[https://packages.gentoo.org/packages/app-eselect/eselect-repository].
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
```
|