audacity: fix sandboxing

This commit is contained in:
2024-04-02 02:56:51 +00:00
parent b85d4b20f8
commit 9d9791814a

View File

@@ -1,3 +1,8 @@
# tips/tricks
# - audio recording
# - default recording input will be silent, on lappy.
# - Audio Setup -> Rescan Audio Devices ...
# - Audio Setup -> Recording device -> sysdefault
{ pkgs, ... }: { pkgs, ... }:
{ {
sane.programs.audacity = { sane.programs.audacity = {
@@ -20,6 +25,9 @@
# audacity needs the entire config dir mounted if running in a sandbox # audacity needs the entire config dir mounted if running in a sandbox
".config/audacity" ".config/audacity"
]; ];
sandbox.extraPaths = [
"/dev/snd" # for recording audio inputs to work
];
# disable first-run splash screen # disable first-run splash screen
fs.".config/audacity/audacity.cfg".file.text = '' fs.".config/audacity/audacity.cfg".file.text = ''