Skip to content

Commit

Permalink
Merge pull request #286067 from NixOS/backport-283274-to-release-23.11
Browse files Browse the repository at this point in the history
[Backport release-23.11] nixos/incus: add zfs/lib/udev to path
  • Loading branch information
adamcstephens authored Feb 3, 2024
2 parents 7b9bd55 + 4adadf4 commit e0cc80b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nixos/modules/virtualisation/incus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ in
"network-online.target"
];

path = lib.mkIf config.boot.zfs.enabled [ config.boot.zfs.package ];
path = lib.mkIf config.boot.zfs.enabled [
config.boot.zfs.package
"${config.boot.zfs.package}/lib/udev"
];

environment = {
# Override Path to the LXC template configuration directory
Expand Down

0 comments on commit e0cc80b

Please sign in to comment.