diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-14 17:29:42 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-14 22:10:44 +0900 |
| commit | c5265b90b055ee15908298c5d463301f1aae2eb1 (patch) | |
| tree | 7f19a87f80cddab1a3dbe1db0390c71d274cdd94 /gnu | |
| parent | 3bb6147fdcba173708da33cc7d33124ebc639e56 (diff) | |
system: Add sgx group to %base-groups.
* gnu/system/shadow.scm (%base-groups): Add 'sgx' group.
Fixes: <https://issues.guix.gnu.org/70278>
Change-Id: I4f9e3c7751ac11f0c7a4283390223778511494f8
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/system/shadow.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index d0f1b6b2b14..7258a57dc6a 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -130,7 +130,8 @@ (system-group (name "floppy")) (system-group (name "cdrom")) (system-group (name "tape")) - (system-group (name "kvm"))))) ; for /dev/kvm + (system-group (name "kvm")) ; for /dev/kvm + (system-group (name "sgx"))))) (define %base-user-accounts ;; List of standard user accounts. Note that "root" is a special case, so |
