nixos/guix: init

This commit is contained in:
Gabriel Arazas
2023-10-29 14:44:03 +08:00
committed by Weijia Wang
parent 092aaf8418
commit ad277ea47e
9 changed files with 599 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
;; A script that creates a store item with the given text and prints the
;; resulting store item path.
(use-modules (guix))
(with-store store
(display (add-text-to-store store "guix-basic-test-text"
(string-join
(cdr (command-line))))))