summaryrefslogtreecommitdiff
path: root/commons/sudoers.scm
blob: 6d73a346aa6ddda8c26c23f46004c9db51e1b5ba (plain)
1
2
3
4
5
6
7
8
9
10
(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))