diff options
author | pjotrp | 2019-12-18 02:37:25 -0600 |
---|---|---|
committer | pjotrp | 2019-12-18 02:37:25 -0600 |
commit | 715755405c50338e9b5d89e1ce24e9756ca2a668 (patch) | |
tree | a4b8e0ee9e0c3a0bf26d8d251fab0b0b0f7cecd3 /gn/deploy/machines.scm | |
parent | 673e969019239845946dfe0c444b7ad8ce70b823 (diff) | |
download | guix-bioinformatics-715755405c50338e9b5d89e1ce24e9756ca2a668.tar.gz |
Machines
Diffstat (limited to 'gn/deploy/machines.scm')
-rw-r--r-- | gn/deploy/machines.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gn/deploy/machines.scm b/gn/deploy/machines.scm index 9d7be62..b54f2f1 100644 --- a/gn/deploy/machines.scm +++ b/gn/deploy/machines.scm @@ -5,6 +5,7 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) @@ -53,6 +54,9 @@ ; (copy-recursively nginx-etc target) (copy-file (string-append nginx-etc "/nginx.conf") (string-append target "/nginx.conf")) + (plain-file "sudoers" "\ +root ALL=(ALL) ALL +%wheel ALL=(ALL) ALL\n") #t)))) (home-page "http://git.genenetwork.org/pjotrp/guix-bioinformatics") (synopsis "Nginx configuration") |