diff options
author | raid5atemyhomework <raid5atemyhomework@protonmail.com> | 2021-01-08 09:41:25 +0800 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2021-02-08 03:34:40 +0100 |
commit | fe7529d71b8d7b09b48679c86e1155895afd92a4 (patch) | |
tree | 85a22d5038701a6eec472518b140cdfa7a08e267 /gnu | |
parent | fae98f52a866ff6f20b6f227afe9d6bf068e1458 (diff) | |
download | guix-fe7529d71b8d7b09b48679c86e1155895afd92a4.tar.gz guix-fe7529d71b8d7b09b48679c86e1155895afd92a4.zip |
gnu: Remove 'file-systems requirement from kernel-module-loader.
* gnu/services/linux.scm (kernel-module-loader-shepherd-service):
Remove 'file-systems requirement.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services/linux.scm b/gnu/services/linux.scm index 1046a7e0c2..340b330030 100644 --- a/gnu/services/linux.scm +++ b/gnu/services/linux.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2021 raid5atemyhomework <raid5atemyhomework@protonmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -150,7 +151,7 @@ representation." (shepherd-service (documentation "Load kernel modules.") (provision '(kernel-module-loader)) - (requirement '(file-systems)) + (requirement '()) (one-shot? #t) (modules `((srfi srfi-1) (srfi srfi-34) |