|
| 1 | +# |
| 2 | +# /etc/pacman.conf |
| 3 | +# |
| 4 | +# See the pacman.conf(5) manpage for option and repository directives |
| 5 | + |
| 6 | +# |
| 7 | +# GENERAL OPTIONS |
| 8 | +# |
| 9 | +[options] |
| 10 | +# The following paths are commented out with their default values listed. |
| 11 | +# If you wish to use different paths, uncomment and update the paths. |
| 12 | +#RootDir = / |
| 13 | +#DBPath = /var/lib/pacman/ |
| 14 | +#CacheDir = /var/cache/pacman/pkg/ |
| 15 | +#LogFile = /var/log/pacman.log |
| 16 | +#GPGDir = /etc/pacman.d/gnupg/ |
| 17 | +#HookDir = /etc/pacman.d/hooks/ |
| 18 | +HoldPkg = pacman glibc |
| 19 | +#XferCommand = /usr/bin/curl -L -C - -f -o %o %u |
| 20 | +#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u |
| 21 | +#CleanMethod = KeepInstalled |
| 22 | +#UseDelta = 0.7 |
| 23 | +Architecture = auto |
| 24 | + |
| 25 | +# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup |
| 26 | +#IgnorePkg = |
| 27 | +#IgnoreGroup = |
| 28 | + |
| 29 | +#NoUpgrade = |
| 30 | +#NoExtract = |
| 31 | + |
| 32 | +# Misc options |
| 33 | +#UseSyslog |
| 34 | +Color |
| 35 | +ILoveCandy |
| 36 | +#NoProgressBar |
| 37 | +#CheckSpace |
| 38 | +VerbosePkgLists |
| 39 | +DisableDownloadTimeout |
| 40 | +ParallelDownloads = 5 |
| 41 | + |
| 42 | +# By default, pacman accepts packages signed by keys that its local keyring |
| 43 | +# trusts (see pacman-key and its man page), as well as unsigned packages. |
| 44 | +SigLevel = Required DatabaseOptional |
| 45 | +LocalFileSigLevel = Optional |
| 46 | +#RemoteFileSigLevel = Required |
| 47 | + |
| 48 | +# NOTE: You must run `pacman-key --init` before first using pacman; the local |
| 49 | +# keyring can then be populated with the keys of all official Arch Linux |
| 50 | +# packagers with `pacman-key --populate archlinux`. |
| 51 | + |
| 52 | +# |
| 53 | +# REPOSITORIES |
| 54 | +# - can be defined here or included from another file |
| 55 | +# - pacman will search repositories in the order defined here |
| 56 | +# - local/custom mirrors can be added here or in separate files |
| 57 | +# - repositories listed first will take precedence when packages |
| 58 | +# have identical names, regardless of version number |
| 59 | +# - URLs will have $repo replaced by the name of the current repo |
| 60 | +# - URLs will have $arch replaced by the name of the architecture |
| 61 | +# |
| 62 | +# Repository entries are of the format: |
| 63 | +# [repo-name] |
| 64 | +# Server = ServerName |
| 65 | +# Include = IncludePath |
| 66 | +# |
| 67 | +# The header [repo-name] is crucial - it must be present and |
| 68 | +# uncommented to enable the repo. |
| 69 | +# |
| 70 | + |
| 71 | +# The testing repositories are disabled by default. To enable, uncomment the |
| 72 | +# repo name header and Include lines. You can add preferred servers immediately |
| 73 | +# after the header, and they will be used before the default mirrors. |
| 74 | + |
| 75 | +#[testing] |
| 76 | +#Include = /etc/pacman.d/mirrorlist |
| 77 | + |
| 78 | +[core] |
| 79 | +Include = /etc/pacman.d/mirrorlist |
| 80 | + |
| 81 | +[extra] |
| 82 | +Include = /etc/pacman.d/mirrorlist |
| 83 | + |
| 84 | +#[community-testing] |
| 85 | +#Include = /etc/pacman.d/mirrorlist |
| 86 | + |
| 87 | +[community] |
| 88 | +Include = /etc/pacman.d/mirrorlist |
| 89 | + |
| 90 | +# If you want to run 32 bit applications on your x86_64 system, |
| 91 | +# enable the multilib repositories as required here. |
| 92 | + |
| 93 | +#[multilib-testing] |
| 94 | +#Include = /etc/pacman.d/mirrorlist |
| 95 | + |
| 96 | +[multilib] |
| 97 | +Include = /etc/pacman.d/mirrorlist |
| 98 | + |
| 99 | +[endeavouros] |
| 100 | +SigLevel = PackageRequired |
| 101 | +Include = /etc/pacman.d/endeavouros-mirrorlist |
| 102 | + |
| 103 | +# An example of a custom package repository. See the pacman manpage for |
| 104 | +# tips on creating your own repositories. |
| 105 | +#[custom] |
| 106 | +#SigLevel = Optional TrustAll |
| 107 | +#Server = file:///home/custompkgs |
0 commit comments