Advertisement
Guest User

SimPilotAdamT Pacman

a guest
Mar 9th, 2022
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.01 KB | None | 0 0
  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. Architecture = auto
  23.  
  24. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  25. IgnorePkg   = systemd lib32-systemd systemd-libs lib32-systemd-libs
  26. #IgnoreGroup =
  27.  
  28. #NoUpgrade   =
  29. #NoExtract   =
  30.  
  31. # Misc options
  32. UseSyslog
  33. Color
  34. #NoProgressBar
  35. CheckSpace
  36. #VerbosePkgLists
  37. ParallelDownloads = 5
  38.  
  39. # By default, pacman accepts packages signed by keys that its local keyring
  40. # trusts (see pacman-key and its man page), as well as unsigned packages.
  41. SigLevel    = Required DatabaseOptional
  42. LocalFileSigLevel = Optional
  43. #RemoteFileSigLevel = Required
  44.  
  45. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  46. # keyring can then be populated with the keys of all official Artix Linux
  47. # packagers with `pacman-key --populate artix`.
  48.  
  49. #
  50. # REPOSITORIES
  51. #   - can be defined here or included from another file
  52. #   - pacman will search repositories in the order defined here
  53. #   - local/custom mirrors can be added here or in separate files
  54. #   - repositories listed first will take precedence when packages
  55. #     have identical names, regardless of version number
  56. #   - URLs will have $repo replaced by the name of the current repo
  57. #   - URLs will have $arch replaced by the name of the architecture
  58. #
  59. # Repository entries are of the format:
  60. #       [repo-name]
  61. #       Server = ServerName
  62. #       Include = IncludePath
  63. #
  64. # The header [repo-name] is crucial - it must be present and
  65. # uncommented to enable the repo.
  66. #
  67.  
  68. # The gremlins repositories are disabled by default. To enable, uncomment the
  69. # repo name header and Include lines. You can add preferred servers immediately
  70. # after the header, and they will be used before the default mirrors.
  71.  
  72. [kde-unstable]
  73. Include = /etc/pacman.d/mirrorlist-arch
  74.  
  75. [gnome-unstable]
  76. Include = /etc/pacman.d/mirrorlist-arch
  77.  
  78. [kde-wobble]
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. [gnome-wobble]
  82. Include = /etc/pacman.d/mirrorlist
  83.  
  84. [universe]
  85. Server = https://universe.artixlinux.org/$arch
  86. Server = https://mirror1.artixlinux.org/universe/$arch
  87. Server = https://mirror.pascalpuffke.de/artix-universe/$arch
  88. Server = https://artixlinux.qontinuum.space:4443/universe/os/$arch
  89. Server = https://mirror.alphvino.com/artix-universe/$arch
  90.  
  91. [omniverse]
  92. Server = http://omniverse.artixlinux.org/$arch
  93.  
  94. [gremlins]
  95. Include = /etc/pacman.d/mirrorlist
  96.  
  97. [system]
  98. Include = /etc/pacman.d/mirrorlist
  99.  
  100. [world]
  101. Include = /etc/pacman.d/mirrorlist
  102.  
  103. [galaxy-gremlins]
  104. Include = /etc/pacman.d/mirrorlist
  105.  
  106. [galaxy]
  107. Include = /etc/pacman.d/mirrorlist
  108.  
  109. [lib32-gremlins]
  110. Include = /etc/pacman.d/mirrorlist
  111.  
  112. [lib32]
  113. Include = /etc/pacman.d/mirrorlist
  114.  
  115. [testing]
  116. Include = /etc/pacman.d/mirrorlist-arch
  117.  
  118. [core]
  119. Include = /etc/pacman.d/mirrorlist-arch
  120.  
  121. [extra]
  122. Include = /etc/pacman.d/mirrorlist-arch
  123.  
  124. [community-testing]
  125. Include = /etc/pacman.d/mirrorlist-arch
  126.  
  127. [community]
  128. Include = /etc/pacman.d/mirrorlist-arch
  129.  
  130. [multilib-testing]
  131. Include = /etc/pacman.d/mirrorlist-arch
  132.  
  133. [multilib]
  134. Include = /etc/pacman.d/mirrorlist-arch
  135.  
  136. # An example of a custom package repository.  See the pacman manpage for
  137. # tips on creating your own repositories.
  138. #[custom]
  139. #SigLevel = Optional TrustAll
  140. #Server = file:///home/custompkgs
  141.  
  142. #[chaotic-aur]
  143. #Include = /etc/pacman.d/chaotic-mirrorlist
  144.  
  145. #[SimPilotAdamT-Arch-Repo]
  146. #SigLevel = Optional DatabaseOptional
  147. #Server = https://gitlab.com/SimPilotAdamT/$repo/-/raw/main/$arch/
  148.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement