mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-03 21:53:26 +01:00
4e81aab657
This helps separate the installation process from the other scripts that are usually ran after a reboot, although this may change in the future if chroot is preferred over executing the commands later.
10 lines
183 B
Bash
10 lines
183 B
Bash
#!/bin/sh
|
|
#
|
|
# Give the wheel group permission to use the sudo and su commands.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Sudo
|
|
|
|
set -xe
|
|
|
|
echo "%wheel ALL=(ALL) ALL" >> /mnt/etc/sudoers
|