summaryrefslogtreecommitdiffstats
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
commit73d93ce8eed9901bf0f696ac3e9772e6d2846b21 (patch)
tree6634260637c82e154bcc33ce7d6a76c1e6c5459a
parent39cebc21fc66e1f0cfa7f1c5512fc31f751bd254 (diff)
ma hw: add pseyecam,cd rip setup
-rw-r--r--2configs/hw/cdrip.nix7
-rw-r--r--2configs/hw/pseyecam.nix6
2 files changed, 13 insertions, 0 deletions
diff --git a/2configs/hw/cdrip.nix b/2configs/hw/cdrip.nix
new file mode 100644
index 000000000..1c0bf9c17
--- /dev/null
+++ b/2configs/hw/cdrip.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+{
+ users.users.makefu = {
+ extraGroups = [ "cdrom" ];
+ packages = [ pkgs.glyr pkgs.abcde ];
+ };
+}
diff --git a/2configs/hw/pseyecam.nix b/2configs/hw/pseyecam.nix
new file mode 100644
index 000000000..029ee7c9c
--- /dev/null
+++ b/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
+ '';
+}