(define-module (commons sudoers) #:use-module (guix gexp)) (define sudoers-content (string-append "root ALL=(ALL) ALL \n" "%wheel ALL=(ALL) ALL \n" "Defaults passwd_timeout=0 \n")) (define-public sudoers-file (plain-file "sudoers" sudoers-content))