Format project using nixfmt rfc candidate.

This commit is contained in:
Kevin Baensch 2024-11-20 20:32:38 +01:00
parent 1f63817684
commit a9f7fe416f
Signed by: derped
GPG key ID: C0F1D326C7626543
91 changed files with 1347 additions and 1000 deletions

View file

@ -2,7 +2,8 @@
pkgs,
lib,
...
}: {
}:
{
services.cron.enable = false;
networking.dhcpcd.extraConfig = "noarp";
@ -56,7 +57,7 @@
};
joycond.enable = true;
udev = {
packages = [];
packages = [ ];
extraRules = ''
KERNEL=="rtc0", GROUP="audio"
KERNEL=="hpet", GROUP="audio"
@ -64,8 +65,13 @@
};
};
boot = {
kernelModules = ["snd-usb-audio" "snd-aloop" "snd-seq" "snd-rawmidi"];
kernelParams = ["threadirq"];
kernelModules = [
"snd-usb-audio"
"snd-aloop"
"snd-seq"
"snd-rawmidi"
];
kernelParams = [ "threadirq" ];
extraModprobeConfig = ''
options snd-usb-audio nrpacks=1
'';