ma hw: add pseyecam,cd rip setup

This commit is contained in:
makefu 2023-06-03 15:33:42 +02:00
parent 39cebc21fc
commit 73d93ce8ee
2 changed files with 13 additions and 0 deletions

7
2configs/hw/cdrip.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
users.users.makefu = {
extraGroups = [ "cdrom" ];
packages = [ pkgs.glyr pkgs.abcde ];
};
}

6
2configs/hw/pseyecam.nix Normal file
View file

@ -0,0 +1,6 @@
# https://bugzilla.kernel.org/show_bug.cgi?id=198129
{
boot.extraModprobeConfig = ''
options snd_usb_audio ignore_ctl_error=1
'';
}