mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-08 07:00:28 +01:00
0f7f51e81c
This commit adds sudo where needed for the majority of pacman commands. It also removes zsh, urxvt, and renpy since we don't use those anymore.
14 lines
316 B
Bash
14 lines
316 B
Bash
#!/bin/sh
|
|
#
|
|
# The `rng-tools` package is used to increase entropy and make
|
|
# /dev/random faster. This is useful for many programs, including
|
|
# [SDDM](https://wiki.archlinux.org/index.php/SDDM).
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Rng-tools
|
|
|
|
set -xe
|
|
|
|
sudo pacman -S rng-tools
|
|
|
|
sudo systemctl enable rngd.service
|