Merge pull request #204297 from bjornfor/nixos-fix-lxd-init

nixos/lxd: add missing util-linux to $PATH
This commit is contained in:
Mario Rodas
2022-12-04 15:02:59 -05:00
committed by GitHub
+2 -1
View File
@@ -140,7 +140,8 @@ in {
];
documentation = [ "man:lxd(1)" ];
path = optional cfg.zfsSupport config.boot.zfs.package;
path = [ pkgs.util-linux ]
++ optional cfg.zfsSupport config.boot.zfs.package;
serviceConfig = {
ExecStart = "@${cfg.package}/bin/lxd lxd --group lxd";