
Finished configuring the init/shell commands Updated readme Fixed issue with missing /boot/efi directory Added new config module for setting/retrieving vm configs Updated machine setup Fixed issue with missing files added config to docs section added x86_64 support fixed issue with x86_64 update and updated README Added some content to README Added markdown export of org file Updated readme to reflect the need for guile-next Removed guile from install example exported changes to md Updated README fixed issue with sed compatibility (bsd/gnu) regenerated readme markdown Removed readme markdown file for org alternative Updated project license updated autocompile to include for now updated script updated script updated script updated msg script updated license updated to test testing testing testing testing testing testing testing testing testing testing testing
33 lines
463 B
Scheme
33 lines
463 B
Scheme
(define-module
|
|
(msg hconfig)
|
|
#:use-module
|
|
(srfi srfi-26)
|
|
#:export
|
|
(%version
|
|
%author
|
|
%license
|
|
%copyright
|
|
%gettext-domain
|
|
G_
|
|
N_
|
|
init-nls
|
|
init-locale))
|
|
|
|
(define %version "0.1")
|
|
|
|
(define %author "Chad Nelson")
|
|
|
|
(define %license 'agpl3+)
|
|
|
|
(define %copyright '(2023))
|
|
|
|
(define %gettext-domain "msg")
|
|
|
|
(define G_ identity)
|
|
|
|
(define N_ identity)
|
|
|
|
(define (init-nls) "Dummy as no NLS is used" #t)
|
|
|
|
(define (init-locale) "Dummy as no NLS is used" #t)
|
|
|