blob: 0ae42d3b02c40398a9536795bdad938c569ecd09 (
about) (
plain)
1
2
3
4
5
6
7
8
|
(define-module (suweren commons sudoers)
#:use-module (guix gexp))
(define-public %sudoers-specification*
(let ((content (string-append "root ALL=(ALL) ALL \n"
"%wheel ALL=(ALL) ALL \n"
"Defaults passwd_timeout=0 \n")))
(plain-file "sudoers" content)))
|