unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69422] [PATCH] home: services: Add home-shell-authorized-directories-service-type
@ 2024-02-27 10:34 Kjartan Oli Agustsson
  0 siblings, 0 replies; only message in thread
From: Kjartan Oli Agustsson @ 2024-02-27 10:34 UTC (permalink / raw)
  To: 69422; +Cc: Kjartan Oli Agustsson

home: services: Add home-shell-authorized-directories-service-type.

* gnu/home/services/guix.scm (home-shell-authorized-directories-service-type):
  New variable.
* doc/guix.texi (Guix Home Services): Document it.

Change-Id: I3501233c79e25ceaedf981acc5805e660b52a419
---
 doc/guix.texi              | 18 ++++++++++++++++++
 gnu/home/services/guix.scm | 23 ++++++++++++++++++++++-
 2 files changed, 40 insertions(+), 1 deletion(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 671cdab6f8..c19f30354b 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -45726,6 +45726,24 @@ Guix Home Services
 @end lisp
 @end defvar
 
+@defvar home-shell-authorized-directories-service-type
+This is the service type for managing
+@file{$XDG_CONFIG_HOME/guix/shell-authorized-directories}, the file that
+controls the loading of @file{manifest.scm} and @file{guix.scm} files by
+@command{guix shell} (@pxref{Invoking guix shell}).  Its associated
+value is a list of strings, each of which corresponds to the path of a
+directory @command{guix shell} is authorized to load @file{manifest.scm}
+and @file{guix.scm} files in.
+
+A typical extension for authorizing a directory might look like this:
+
+@lisp
+(simple-service 'authorised-direcotries
+       home-shell-authorized-directories-service-type
+     (list "~/guix" "some/other/project/"))
+@end lisp
+@end defvar
+
 @node Fonts Home Services
 @subsection Fonts Home Services
 
diff --git a/gnu/home/services/guix.scm b/gnu/home/services/guix.scm
index 819b20b6c9..49265a1c45 100644
--- a/gnu/home/services/guix.scm
+++ b/gnu/home/services/guix.scm
@@ -22,7 +22,9 @@ (define-module (gnu home services guix)
   #:use-module (guix gexp)
   #:use-module (ice-9 pretty-print)
   #:use-module (srfi srfi-1)
-  #:export (home-channels-service-type))
+  #:use-module (srfi srfi-26)
+  #:export (home-channels-service-type
+            home-shell-authorized-directories-service-type))
 
 (define (channels-xdg-files channels)
   `(("guix/channels.scm"
@@ -42,3 +44,22 @@ (define home-channels-service-type
     (list (service-extension home-xdg-configuration-files-service-type
                              channels-xdg-files)))
    (description "Manages the per-user Guix channels specification.")))
+
+(define (shell-authorized-directories-files directories)
+  `(("guix/shell-authorized-directories"
+     ,(plain-file
+       "shell-authorized-directories"
+       (call-with-output-string
+         (lambda (port)
+           (map (cut format port "~a~%" <>) directories)))))))
+
+(define home-shell-authorized-directories-service-type
+  (service-type
+   (name 'shell-authorized-directories)
+   (default-value '())
+   (compose concatenate)
+   (extend append)
+   (extensions
+    (list (service-extension home-xdg-configuration-files-service-type
+                             shell-authorized-directories-files)))
+   (description "Manages guix shell authorized directories.")))

base-commit: de24aaf13b17d6c019f3f240fd0eb0e1b8654970
-- 
2.41.0





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2024-02-27 10:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-27 10:34 [bug#69422] [PATCH] home: services: Add home-shell-authorized-directories-service-type Kjartan Oli Agustsson

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).