mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
11 lines
275 B
Nix
11 lines
275 B
Nix
{pkgs, ...}: {
|
|
boot.kernelModules = ["ntsync"];
|
|
|
|
services.udev.packages = [
|
|
(pkgs.writeTextFile {
|
|
name = "ntsync-udev-rules";
|
|
text = ''KERNEL=="ntsync", MODE="0660", TAG+="uaccess"'';
|
|
destination = "/etc/udev/rules.d/70-ntsync.rules";
|
|
})
|
|
];
|
|
}
|