summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-06-03 15:33:42 +0200
committermakefu <github@syntax-fehler.de>2023-06-03 15:33:42 +0200
commit20746ea5f4e6b31171a65aa7026d13356ce6ce68 (patch)
treeaf075465aeb4a2693bf9001fd7bf8ea96e66a088 /makefu
parent1c1f9de6281c98401661d51420a7f2664ca2e787 (diff)
ma hw: add pseyecam,cd rip setup
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/hw/cdrip.nix7
-rw-r--r--makefu/2configs/hw/pseyecam.nix6
2 files changed, 13 insertions, 0 deletions
diff --git a/makefu/2configs/hw/cdrip.nix b/makefu/2configs/hw/cdrip.nix
new file mode 100644
index 000000000..1c0bf9c17
--- /dev/null
+++ b/makefu/2configs/hw/cdrip.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+{
+ users.users.makefu = {
+ extraGroups = [ "cdrom" ];
+ packages = [ pkgs.glyr pkgs.abcde ];
+ };
+}
diff --git a/makefu/2configs/hw/pseyecam.nix b/makefu/2configs/hw/pseyecam.nix
new file mode 100644
index 000000000..029ee7c9c
--- /dev/null
+++ b/makefu/2configs/hw/pseyecam.nix
@@ -0,0 +1,6 @@
+# https://bugzilla.kernel.org/show_bug.cgi?id=198129
+{
+ boot.extraModprobeConfig = ''
+ options snd_usb_audio ignore_ctl_error=1
+ '';
+}