You've already forked guix-tribes
38 lines
679 B
Scheme
38 lines
679 B
Scheme
(define-module (manifests substitutes installer)
|
|
#:use-module (gnu packages)
|
|
#:use-module (guix profiles)
|
|
#:use-module (nbde packages crypto))
|
|
|
|
(define %installer-specifications
|
|
'("bash-minimal"
|
|
"coreutils"
|
|
"diffutils"
|
|
"findutils"
|
|
"gawk"
|
|
"grep"
|
|
"gzip"
|
|
"guix"
|
|
"inetutils"
|
|
"iproute2"
|
|
"kexec-tools"
|
|
"less"
|
|
"nss-certs"
|
|
"procps"
|
|
"rsync"
|
|
"sed"
|
|
"tar"
|
|
"which"
|
|
"xz"
|
|
"cryptsetup"
|
|
"dosfstools"
|
|
"e2fsprogs"
|
|
"gptfdisk"
|
|
"kmod"
|
|
"parted"
|
|
"util-linux"))
|
|
|
|
(packages->manifest
|
|
(append (map specification->package %installer-specifications)
|
|
(list clevis
|
|
luksmeta)))
|