summaryrefslogtreecommitdiff
path: root/gnu/system/shadow.scm
diff options
context:
space:
mode:
authorThéo Tyburn <theo.tyburn@posteo.net>2026-06-03 10:56:10 +0200
committerNguyễn Gia Phong <cnx@loang.net>2026-08-31 11:00:19 +0900
commitc62ebcd02c2eb190ab5dc157475ef4a93a1c7581 (patch)
treef178f262874978ac0be45e5499db5cc2d63248fe /gnu/system/shadow.scm
parent30cb1f541eb99b0fbbec1f8f29796151103c5f2b (diff)
doc: Move Commentary above module definition.
Merges: https://codeberg.org/guix/guix/pulls/9052 Reviewed-by: Ludovic Courtès <ludo@gnu.org> Reviewed-by: Maxim Cournoyer <maxim@guixotic.coop> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/system/shadow.scm')
-rw-r--r--gnu/system/shadow.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index f864a4f692e..2cce6e828f6 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -21,6 +21,12 @@
21;;; You should have received a copy of the GNU General Public License 21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23 23
24;;; Commentary:
25;;;
26;;; Utilities for configuring the Shadow tool suite ('login', 'passwd', etc.)
27;;;
28;;; Code:
29
24(define-module (gnu system shadow) 30(define-module (gnu system shadow)
25 #:use-module ((guix diagnostics) #:select (formatted-message)) 31 #:use-module ((guix diagnostics) #:select (formatted-message))
26 #:use-module (guix records) 32 #:use-module (guix records)
@@ -97,12 +103,6 @@
97 103
98 subids-service-type)) 104 subids-service-type))
99 105
100;;; Commentary:
101;;;
102;;; Utilities for configuring the Shadow tool suite ('login', 'passwd', etc.)
103;;;
104;;; Code:
105
106;; Change the default shell used by new <user-account> records. 106;; Change the default shell used by new <user-account> records.
107(default-shell (file-append bash "/bin/bash")) 107(default-shell (file-append bash "/bin/bash"))
108 108