summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-05-17 14:47:57 +0200
committerajs124 <git@ajs124.de>2021-05-17 14:47:57 +0200
commit8e7879302908efc80d437bdf5a9d0fd806fdb05a (patch)
tree8edbec50814b9c8764ac97846acc44b9ba96dc5f /nixos
parentb900661f6e26d9822a0bbc0e6b7b86c64cf816b3 (diff)
downloadnixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar.gz
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar.bz2
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar.lz
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar.xz
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.tar.zst
nixpkgs-8e7879302908efc80d437bdf5a9d0fd806fdb05a.zip
nixos/tasks/filesystems: utillinux -> util-linux
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index 2aeb8598ada..24f71d29427 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -309,7 +309,7 @@ in
         "mount-pstore" = {
           serviceConfig = {
             Type = "oneshot";
-            ExecStart = "${pkgs.utillinux}/bin/mount -t pstore -o nosuid,noexec,nodev pstore /sys/fs/pstore";
+            ExecStart = "${pkgs.util-linux}/bin/mount -t pstore -o nosuid,noexec,nodev pstore /sys/fs/pstore";
             ExecStartPost = pkgs.writeShellScript "wait-for-pstore.sh" ''
               set -eu
               TRIES=0