Skip to content

Instantly share code, notes, and snippets.

@oldschoolBavarianReferenceSystem
Created October 23, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oldschoolBavarianReferenceSystem/025d89d2ca210c6946539e08357cf310 to your computer and use it in GitHub Desktop.
Save oldschoolBavarianReferenceSystem/025d89d2ca210c6946539e08357cf310 to your computer and use it in GitHub Desktop.
guix-system setup
(define my-guix-service-type
(guix-configuration
(substitute-urls '())
;; Build on only maximum one core,
;; such that we do not overload the system
(extra-options '("--cores=1"))))
(operating-system
...
(services ...
(modify-services
%base-services
(guix-service-type config => my-guix-service-type)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment