blob: b27b821b7a50f7658ba7202711923c9ff9be60b6 (
plain)
1
2
3
4
5
6
7
8
|
(define-module (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)))
|