19 lines
808 B
Scheme
19 lines
808 B
Scheme
;; Example Fruix development system declaration.
|
|
;;
|
|
;; You can use this as a starting point for /etc/fruix/system.scm and then run:
|
|
;; fruix system build /etc/fruix/system.scm --system dev-tools-operating-system
|
|
;; or on an installed Fruix node:
|
|
;; fruix system reconfigure /etc/fruix/system.scm --system dev-tools-operating-system
|
|
|
|
(use-modules (fruix system freebsd)
|
|
(fruix packages freebsd))
|
|
|
|
(define dev-tools-operating-system
|
|
(operating-system
|
|
#:host-name "fruix-dev"
|
|
;; The recovered development profile now includes:
|
|
;; freebsd-nodejs, freebsd-npm, freebsd-ripgrep, freebsd-tmux, freebsd-neovim
|
|
;; along with the existing compiler/build tools.
|
|
#:development-packages %freebsd-development-profile-packages
|
|
#:build-packages %freebsd-development-profile-packages))
|