Replace symlinked guix.scm with manifest.scm
parent
9c7ee0752b
commit
892a448eba
|
@ -1,4 +1,4 @@
|
||||||
(add-to-load-path ".guix/modules")
|
(add-to-load-path ".")
|
||||||
(define-module (resume-package)
|
(define-module (resume-package)
|
||||||
#:use-module (guix)
|
#:use-module (guix)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
@ -25,5 +25,3 @@
|
||||||
(description "My resume in Typst")
|
(description "My resume in Typst")
|
||||||
(home-page "https://ethanreece.com")
|
(home-page "https://ethanreece.com")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
rust-typst-cli-0.11
|
|
||||||
|
|
5
Justfile
5
Justfile
|
@ -1,9 +1,8 @@
|
||||||
default:
|
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:
|
dev:
|
||||||
guix time-machine --channels=./channels.scm.lock -- shell --file=./guix.scm
|
guix time-machine --channels=./channels.scm.lock -- shell --manifest=./manifest.scm
|
||||||
|
|
||||||
update:
|
update:
|
||||||
guix time-machine --channels=./channels.scm -- shell --container guix bash -- bash -c "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"
|
||||||
# guix shell --container --network --nesting guix bash -- bash -c "guix pull --channels=./channels.scm && guix describe --format=channels > ./channels.scm.lock"
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
(add-to-load-path ".guix/modules")
|
||||||
|
(use-modules (typst-package)
|
||||||
|
(resume-package))
|
||||||
|
|
||||||
|
(packages->manifest (list rust-typst-cli-0.11))
|
Loading…
Reference in New Issue