mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-08 07:00:28 +01:00
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
|