1
0
Fork 0

Replace symlinked guix.scm with manifest.scm

main
Ethan Reece 2024-07-15 08:21:49 -05:00
parent 9c7ee0752b
commit 892a448eba
Signed by: me
GPG Key ID: 198E9EB433DB1B28
4 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
(add-to-load-path ".guix/modules")
(add-to-load-path ".")
(define-module (resume-package)
#:use-module (guix)
#:use-module (guix build-system gnu)
@ -25,5 +25,3 @@
(description "My resume in Typst")
(home-page "https://ethanreece.com")
(license license:expat)))
rust-typst-cli-0.11

View File

@ -1,9 +1,8 @@
default:
guix time-machine --channels=./channels.scm.lock -- shell --container --file=./guix.scm -- typst compile main.typ
guix time-machine --channels=./channels.scm.lock -- shell --container --manifest=./manifest.scm -- typst compile main.typ
dev:
guix time-machine --channels=./channels.scm.lock -- shell --file=./guix.scm
guix time-machine --channels=./channels.scm.lock -- shell --manifest=./manifest.scm
update:
guix time-machine --channels=./channels.scm -- shell --container guix bash -- bash -c "guix describe --format=channels > ./channels.scm.lock"
# guix shell --container --network --nesting guix bash -- bash -c "guix pull --channels=./channels.scm && guix describe --format=channels > ./channels.scm.lock"
guix time-machine --channels=./channels.scm -- shell --container guix bash -- bash -c "guix describe --format=channels > ./channels.scm.lock"

View File

@ -1 +0,0 @@
.guix/modules/resume-package.scm

5
manifest.scm 100644
View File

@ -0,0 +1,5 @@
(add-to-load-path ".guix/modules")
(use-modules (typst-package)
(resume-package))
(packages->manifest (list rust-typst-cli-0.11))