[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: hydra: overdrive: Add myself as a sysadmin.
From: |
Mathieu Othacehe |
Subject: |
branch master updated: hydra: overdrive: Add myself as a sysadmin. |
Date: |
Mon, 11 Jan 2021 08:44:36 -0500 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository maintenance.
The following commit(s) were added to refs/heads/master by this push:
new cac359f hydra: overdrive: Add myself as a sysadmin.
cac359f is described below
commit cac359ffc43f2bc895b8a598fced5c261d5263bd
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Jan 11 14:43:35 2021 +0100
hydra: overdrive: Add myself as a sysadmin.
hydra/overdrive.scm: Add myself as a sysadmin.
---
hydra/overdrive.scm | 64 +++++++++++++++++++++++++++--------------------------
1 file changed, 33 insertions(+), 31 deletions(-)
diff --git a/hydra/overdrive.scm b/hydra/overdrive.scm
index 27175f8..409716a 100644
--- a/hydra/overdrive.scm
+++ b/hydra/overdrive.scm
@@ -19,6 +19,7 @@
(sysadmin "rekado" "Ricardo Wurmus")
(sysadmin "dannym" "Danny Milosavljevic")
(sysadmin "janneke" "Jan Nieuwenhuizen")
+ (sysadmin "mathieu" "Mathieu Othacehe")
(user-account
(name "hydra")
(comment "Hydra User")
@@ -57,47 +58,48 @@
(mount-point "/")
(type "btrfs"))
(file-system
- (device "/dev/sda1")
- (mount-point "/boot/efi")
+ (device "/dev/sda1")
+ (mount-point "/boot/efi")
;; original options:
;;
(rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
- (type "vfat"))
+ (type "vfat"))
%base-file-systems))
(swap-devices '("/dev/sda4"))
(users (append %accounts %base-user-accounts))
- (services (cons* (service openssh-service-type
- (openssh-configuration
- (authorized-keys
- `(("ludo" ,(local-file "keys/ssh/ludo.pub"))
- ("rekado" ,(local-file "keys/ssh/rekado.pub"))
- ("dannym" ,(local-file "keys/ssh/dannym.pub"))
- ("janneke" ,(local-file
"keys/ssh/janneke.pub"))))))
- (service dhcp-client-service-type)
- (service mcron-service-type
- (mcron-configuration
- (jobs (list gc-job btrfs-job))))
+ (services
+ (cons* (service openssh-service-type
+ (openssh-configuration
+ (authorized-keys
+ `(("ludo" ,(local-file "keys/ssh/ludo.pub"))
+ ("rekado" ,(local-file "keys/ssh/rekado.pub"))
+ ("dannym" ,(local-file "keys/ssh/dannym.pub"))
+ ("janneke" ,(local-file "keys/ssh/janneke.pub"))
+ ("mathieu" ,(local-file "keys/ssh/mathieu.pub"))))))
+ (service dhcp-client-service-type)
+ (service mcron-service-type
+ (mcron-configuration
+ (jobs (list gc-job btrfs-job))))
- (service agetty-service-type
- (agetty-configuration
- (tty "ttyAMA0")
- (keep-baud? #t)
- (term "vt220")
- (baud-rate "115200,38400,9600")))
+ (service agetty-service-type
+ (agetty-configuration
+ (tty "ttyAMA0")
+ (keep-baud? #t)
+ (term "vt220")
+ (baud-rate "115200,38400,9600")))
- (service ntp-service-type)
+ (service ntp-service-type)
- (modify-services %base-services
- (guix-service-type config =>
- (guix-configuration
- (inherit config)
- (use-substitutes? #f)
- (max-silent-time 7200)
- (authorized-keys
- %authorized-guix-keys)
- (extra-options
- '("--max-jobs=2" "--cores=3")))))))
+ (modify-services %base-services
+ (guix-service-type config =>
+ (guix-configuration
+ (inherit config)
+ (max-silent-time 7200)
+ (authorized-keys
+ %authorized-guix-keys)
+ (extra-options
+ '("--max-jobs=2" "--cores=3")))))))
(packages (cons* btrfs-progs screen openssh strace nss-certs
%base-packages)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: hydra: overdrive: Add myself as a sysadmin.,
Mathieu Othacehe <=