add unicron, the build machine
This commit is contained in:
parent
8e63730e60
commit
116e49f322
23
system.scm
23
system.scm
@ -53,9 +53,28 @@
|
|||||||
;; Below is the list of system services. To search for available
|
;; Below is the list of system services. To search for available
|
||||||
;; services, run 'guix system search KEYWORD' in a terminal.
|
;; services, run 'guix system search KEYWORD' in a terminal.
|
||||||
(services
|
(services
|
||||||
(append (list (service gnome-desktop-service-type)
|
(append
|
||||||
|
(modify-services %desktop-services
|
||||||
|
(guix-service-type
|
||||||
|
config => (guix-configuration
|
||||||
|
(inherit config)
|
||||||
|
(authorized-keys
|
||||||
|
(append (list
|
||||||
|
(local-file "./unikey.txt"))
|
||||||
|
%default-authorized-guix-keys))
|
||||||
|
|
||||||
|
(build-machines (list
|
||||||
|
#~(build-machine
|
||||||
|
(name "192.168.1.3") ; unicron
|
||||||
|
(systems (list "x86_64-linux" "1686-linux"))
|
||||||
|
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALuQ9g+xYE7Wu5o+8GjtJXLEfOaJwgURMVaJIDb0e8T")
|
||||||
|
(user "root")
|
||||||
|
(speed 2.) ; incredibly fast :3
|
||||||
|
))
|
||||||
|
)
|
||||||
|
)))
|
||||||
|
(list (service gnome-desktop-service-type)
|
||||||
|
|
||||||
;; To configure OpenSSH, pass an 'openssh-configuration'
|
|
||||||
;; record as a second argument to 'service' below.
|
;; record as a second argument to 'service' below.
|
||||||
(service openssh-service-type)
|
(service openssh-service-type)
|
||||||
(service cups-service-type)
|
(service cups-service-type)
|
||||||
|
7
unikey.txt
Normal file
7
unikey.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
(public-key
|
||||||
|
(ecc
|
||||||
|
(curve Ed25519)
|
||||||
|
(q #E175C2683B75DE142F39AA7EA7CEDF1E939A80F44DBDC35479BFA81EB541F125#)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user