about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2019-07-26 12:11:44 +0300
committerNikolay Amiantov <ab@fmap.me>2019-08-01 00:55:35 +0300
commit717b8b3219e0a207e16e28f828f88060b0477d0b (patch)
treefec4aa8017fb64d2c73739be731ddfaa0ec35a4b /nixos/modules/tasks/filesystems
parentca780f4a186ab27425bd57737fe7b9638c2b27a8 (diff)
downloadnixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar.gz
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar.bz2
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar.lz
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar.xz
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.tar.zst
nixlib-717b8b3219e0a207e16e28f828f88060b0477d0b.zip
systemd service: remove generator-packages option
Use systemd.packages instead, it's less error prone and more in line with
what's expected.
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/nfs.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix
index c17cf804950a..e0e8bb1f03de 100644
--- a/nixos/modules/tasks/filesystems/nfs.nix
+++ b/nixos/modules/tasks/filesystems/nfs.nix
@@ -56,7 +56,6 @@ in
     boot.initrd.kernelModules = mkIf inInitrd [ "nfs" ];
 
     systemd.packages = [ pkgs.nfs-utils ];
-    systemd.generatorPackages = [ pkgs.nfs-utils ];
 
     environment.etc = {
       "idmapd.conf".source = idmapdConfFile;