mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
12 lines
225 B
Bash
12 lines
225 B
Bash
#!/bin/sh
|
|
#
|
|
# `pacman-contrib` is used for tools like `paccache`, which
|
|
# allows us to get rid of older cached packages to save
|
|
# disk space.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Pacman
|
|
|
|
set -xe
|
|
|
|
pacman -S pacman-contrib
|