mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
14 lines
311 B
Bash
14 lines
311 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
|
|
|
|
systemctl enable rngd.service
|