test removal of unneeded

This commit is contained in:
NyxErinys 2026-05-26 22:57:48 -05:00
parent fd39696fac
commit 5957426c30

View file

@ -45,13 +45,13 @@ in
disable = []; disable = [];
}; };
services.udev.packages = with pkgs; [ # services.udev.packages = with pkgs; [
openiscsi # openiscsi
]; # ];
services.udev.extraRules = '' # services.udev.extraRules = ''
ACTION=="add", SUBSYSTEM=="scsi_host", KERNEL=="host*", RUN+="${pkgs.bash}/bin/sh -c 'echo - - - > /sys/class/scsi_host/%k/scan'" # ACTION=="add", SUBSYSTEM=="scsi_host", KERNEL=="host*", RUN+="${pkgs.bash}/bin/sh -c 'echo - - - > /sys/class/scsi_host/%k/scan'"
''; # '';
systemd.services.k3s = { systemd.services.k3s = {
restartTriggers = [ restartTriggers = [
@ -62,10 +62,10 @@ in
wants = [ "rpcbind.service" ]; wants = [ "rpcbind.service" ];
path = with pkgs; [ path = with pkgs; [
openiscsi openiscsi
util-linux # util-linux
kmod # kmod
systemd # systemd
udev # udev
]; ];
}; };